centos安装Python3

1,scp Python-3.7.0.tgz [email protected]:/python
2,源码安装
tar -zxvf Python-3.7.0.tgz
cd Python-3.7.0
./configure
make&&make install
3,建立软链接
mv /usr/bin/python /usr/bin/python.bak
ln -s /usr/local/bin/python3 /usr/bin/python
mv /usr/bin/pip /usr/bin/pip.bak
ln -s /usr/local/bin/pip3 /usr/bin/pip
4,查找文件
whereis python

你可能感兴趣的:(centos,python,linux)