您现在的位置是: 首页 > 运维 CentOS 安装Python3
CentOS 安装Python3
2020-05-20 【运维】 2078人已围观 3758次浏览
简介CentOS 安装Python3
首先是安装依赖环境
yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
如果是安装Python 3.7.0以上的版本,还需要安装以下依赖,否则会出现ModuleNotFoundError: No module named '_ctypes'的报错
yum install libffi-devel -y
然后去官网下载Python3
wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz
解压(具体的版本号,根据自己下载的版本来)
tar -zxvf Python-3.7.4.tgz
然后将解压好的文件,根据自己的习惯和喜好,mv到对应的路径
之后进入python解压后的目录,编译安装
PS:如果需要支持SSL模块,则需要在编译安装之前,先操作下面的步骤
先cd到对应的目录(根据自己的路径来)
cd /usr/local/Python-3.7.4/Modules
然后 vim Setup.dist 打开文件后,找到下面的代码,去掉这四行前面的注释
SSL=/usr/local/ssl
_ssl _ssl.c \
-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
-L$(SSL)/lib -lssl -lcrypto
之后wq保存退出
编译安装
cd Python-3.7.4
./configure --prefix=/你放Python目录的路径,比如/usr/local/Python-3.7.4
make && make install
编译完成之后,创建Python3的软连(针对Python2和Python3共存的情况,可以软连Python3,后续操作时通过Python3来操作,便于和Python2的区分)
ln -s /usr/local/Python-3.7.4/bin/python3 /usr/bin/python3
具体的命令可以参考ln命令说明
之后,需要查看pip是否有安装,Python 3.4之后的安装包里面,都自带了pip3,一般新装的系统,是没有pip的,同样也可以通过软连pip3来区分
ln -s /usr/local/Python-3.7.4/bin/pip3 /usr/bin/pip3
最后,通过下面的命令来查看Python3和pip3是否安装成功
python3 -V
因为是软连的python3,所以命令就是python3 -V,正常应该返回安装的Python版本号,比如Python 3.7.4
pip3 -V
同样也是因为软连的pip3,所以命令是pip3 -V,正常是返回对应的pip版本和对应的路径信息,比如
pip 19.0.3 from /usr/local/lib/python3.7/site-packages/pip (python 3.7)
很赞哦! (0)
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Linux 服务器之间传输大文件(压缩文件、查看MD5、后台传输)
- 解决Lost connection to MySQL server at 'reading initial communication packet' 的方法
- mac idea spring boot 启动慢
- CentOS 7 安装 Golang 环境
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- Vue 路由跳转后不在顶部
- 迁移 Docker 目录
- npm 出现 Unexpected token < in JSON at position 21330
- PHP 中list()出现Undefined offset: 0错误
- 记一次Java MessageFormat.format踩坑