写点什么

CentOS 7 安装 Python 3.7

用户头像
wong
关注
发布于: 2020 年 09 月 16 日

Python 3.7 安装

# yum install gcc openssl-devel bzip2-devel libffi-devel
# cd /usr/local/src
# wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz
# tar xzf Python-3.7.3.tgz
# cd Python-3.7.3
# ./configure --enable-optimizations
# make altinstall

make altinstall is used to prevent replacing the default python binary file /usr/bin/python.



配置 Python 虚拟环境

# 安装
# yum install python-virtualenv
# 配置
# cd /backup/scripts
# virtualenv --python=/usr/local/bin/python3.7 env3
# 切换
# cd env3
# source bin/activate
# 安装模块
# pip3 install pandas
# 退出 env3
# deactivate



参考站点

https://tecadmin.net/install-python-3-7-on-centos/

https://blog.csdn.net/u012164361/article/details/83474543



发布于: 2020 年 09 月 16 日阅读数: 48
用户头像

wong

关注

人生充满黑色幽默 2017.10.24 加入

一名工程师

评论

发布
暂无评论
CentOS 7 安装 Python 3.7