个人云服务器上默认安装了python2.7.5 , 但本地开发用的 3.7.1 。来装一下吧
# 创建存放压缩包的临时文件夹
mkdir python3
cd python3
# 下载压缩包
wget https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
# 解压到当前目录
tar -xzf Python-3.7.1.tgz
创建编译规则
# ./configure 命令将python安装到指定路径下,不会分散安装
./configure --prefix /user/local/python3.7.1
编译
make
make install
报错:configure:error:no acceptable C compiler found in $PATH
没有安装gcc,安装一下:
yum -y install gcc
报错: can’t decompress data; zlib not available
安装zlib
wget http://www.zlib.net/zlib1211.zip
unzip zlib1211.zip
./configure
make
make install
报错:No module named ‘_ctypes’
3.7版本需要一个新的包libffi-devel,安装此包之后再次进行编译安装即可
yum install libffi-devel -y
ln -s /usr/local/python3.7.1/bin/python3 /usr/bin/python3
原因
python3.7版本依赖于openssl-1.0.2或以上的版本。服务器版本1.0.1,无法使用
解决办法:
更新openssl
yum update
重新编译python