CentOS6.4部署安装python3版本支持ssl

yum install zlib-devel bzip2-devel openssl-devel ncurses-devel -y
yum install libffi-devel -y
tar -zxvf Python-3.6.2.tgz 

cd Python-3.6.2
./configure --prefix=/usr/local/python36
make && make install

如果make install之后出现如下错误,需要安装libffi-devel,重新编译安装python3:
  File "/root/Python-3.7.2/Lib/ctypes/__init__.py", line 7, in <module>
    from _ctypes import Union, Structure, Array
ModuleNotFoundError: No module named '_ctypes'
make: *** [install] 错误 1

 ModuleNotFoundError: No module named '_ssl'
支持ssl需要升级系统的openssl版本:
tar zxvf openssl-1.0.1m.tar.gz
cd openssl-1.0.1m
./config --prefix=/usr --shared
make && make install


Python-3.6.2/Modules/Setup.dist
取消如下4行注释,则支持ssl:
SSL=/usr/local/ssl
_ssl _ssl.c \
-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
-L$(SSL)/lib -lssl -lcrypto

ln -s /usr/local/python36/bin/python3.6 /usr/local/bin/python3
ln -s /usr/local/python36/bin/pip3 /usr/local/bin/pip3

pip3 install --upgrade pip
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值