您现在的位置是: 首页 > 运维 CentOS 安装Python3
CentOS 安装Python3
2020-05-20 【运维】 2011人已围观 3671次浏览
简介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)
相关文章
- ElasticSearch安装踩坑指南
- Redis 提示 MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk 解决方案
- sentinel directive while not in sentinel mode 问题解决
- LNMP 手动更新 SSL 证书
- Linux no space left on device 出现设备上没有空间问题
- Linux 修改默认的 ssh 22 端口
- Oracle ORA-12541:TNS:no listener错误解决方法
- Nginx转发阿里云OSS内网流量
- nginx 出现 the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in 错误解决方案
- Linux 查看磁盘、磁盘分区、挂载磁盘、卸载磁盘操作
点击排行
- 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、后台传输)
- 解决443端口被VMWare Workstation占用
- Linux 修改默认的 ssh 22 端口
- idea去掉Smart commands execution提示
- PHP 在执行 composer install 时出现提示 PHP Fatal error: Allowed memory size of XXXXXX bytes exhausted <...>
- win10 cmd下运行python命令弹出windows应用商店问题
- Oracle ORA-12541:TNS:no listener错误解决方法
- 优化 Mac 上 office 软件更新慢的问题
- win10 cmder Debian 安装配置 oh-my-zsh
- Redis 提示 MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk 解决方案