废话不多说,直接上步骤
- wget
进入 ,选择相应的python版本链接,直接Wget下载即可
- 解压Python-3.6.2rc1
tar xzf Python-3.6.2rc1.tgz
- 进入python目录进行编译
cd Python-3.6.2rc1
- yum - y install gcc gcc-c++
- ./configure
- make all && make install
安装完成以后,将原来的快捷方式备份,
mv /usr/bin/python /usr/bin/python2.bak
然后创建python3.6的软链接
ln -s /usr/local/bin/python3 /usr/bin/python
******如果不知道python3的安装目录,通过which python3查找一下python3的安装目录
测试一下python3是不是设置成功
python -V
如果显示Python 3.6.2rc1则表示成功,如果不成功,请重复上述步骤逐一排查
至此,centos安装python3成功。
现在开始安装pip3
1、yum -y install epel-release
2、yum -y install python34-setuptools
3、easy_install-3.4 pip
现在就可以使用pip3了
找了好久才找到这个方法,在这里记录一下。网上的方法,十有八九都不好用,要不就是我不会用,这个是实践过,好用的!