ubuntu16ppa方式安装python3.7

1.添加源
sudo add-apt-repository ppa:deadsnakes/ppa
2.sudo apt update
如果过程中遇到卡在wait header,试试先sudo apt clean再update
3.
sudo apt-get install python3.7
4.切换python3默认使用python3.7,不然pip3安装包时会安装python3.5的,导致python3.7import不了
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 150
5.安装pip3
sudo apt install python3-pip

你可能感兴趣的:(linux)