ubuntu服务器配置python笔记(详细步骤
【摘要】
ubuntu在服务器配置python笔记,按照步骤来,就配置好python了(
服务器镜像配置:
镜像源配置:https://www.jianshu.com/p/d4525ca41a49 替换镜像源的时...
ubuntu在服务器配置python笔记,按照步骤来,就配置好python了(
服务器镜像配置:
镜像源配置:https://www.jianshu.com/p/d4525ca41a49 替换镜像源的时候就是把原来的全部删除替换自己的镜像源
清华ubuntu镜像源:https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/
服务器ubuntu的python配置:
cd / # 就可以进入根目录
ls可以看到根目录下的所有文件夹
cd home/ubuntu
1. sudo mkdir /usr/local/python3 # 创建安装目录
2. wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz # 可以在https://www.python.org/ftp/python/下任意选自己想装的版本,注意是tgz
3.tar -xzvf Python-3.9.6.tgz #解压
4.cd Python-3.9.6
5.sudo ./configure --prefix=/usr/local/python3 # 注意在Python-3.9.6文件夹下执行 指定创建的目录
6.sudo make
7.sudo make install #装install
8.sudo apt install python3-pip #装pip3 不能用pip
如果是centos服务器则: yum install python-pip
重复,再次编译下:
9.cd Python-3.9.6
10.sudo ./configure --prefix=/usr/local/python3
11.sudo make
12.sudo make install
#安装setuptool
13.wget https://files.pythonhosted.org/packages/a6/5b/f399fcffb9128d642387133dc3aa9bb81f127b949cd4d9f63e5602ad1d71/setuptools-39.1.0.zip
14.unzip setuptools-39.1.0.zip
15. cd setuptools-39.1.0
#安装pip
17.curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
18.python get-pip.py
下载模块用:pip3 install xxx
添加环境变量:export PATH=/home/ubuntu/.local/bin类似
vim编辑文档
:wq 保存并退出
:wq!强制保存退出
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
欢迎大佬补充)
文章来源: chuanchuan.blog.csdn.net,作者:川川菜鸟,版权归原作者所有,如需转载,请联系作者。
原文链接:chuanchuan.blog.csdn.net/article/details/118167962
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)