CentOS 6.x自带的Python版本是2.6,CentOS 7.x上自带的是2.7,我们要自己安装Python3.X,配置环境,不过一般安装过程不会一帆风顺,往往有些报错,在CentOS以及其他的Linux系统中遇到安装包安装错误的原因,大多数都是因为缺少依赖包导致的,需要自己处理一下,下面就是在安装Python3一般会遇到的问题: 一.问题1: checking MACHDEP... linux checking for --without-gcc... no checking for
下载Python安装包 cd /usr/local/src 编译时要提前装好gcc编译器和zlib zlib-devel 1.下载文件 wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz 2.解压 tar -zxvf Python-3.6.0.tgz 3.进入解压目录 cd Python-3.6.0 4.编译安装包 ./configure --prefix=/usr/local/python make && make
这几天在部署Django,需要安装的东西有点多,python3.pip3.openssl(pip依赖ssl环境),所以第一步是安装openssl,如何安装呢?主要有三步,随ytkah一起来看看吧 1.下载 wget https://www.openssl.org/source/openssl-1.0.2h.tar.gz 2.解压 tar zxf openssl-1.0.2h.tar.gz cd openssl-1.0.2h 3.安装 ./config shared zlib make make
安装python3 大多数云平台没有安装zlib和openssl的devel包,需要提前安装 下载python源码 cd /home/cheat wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tar.gz tar xzvf Python-3.6.6.tar.gz cd Python-3.6.6 mkdir build cd build ../configure –with-ssl –prefix=/home/cheat/p