本文参考了 How to install python3 in Ubuntu 16.04 这篇文章。

1 安装 Python

1
2
3
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.6

2 安装 Pip

1
2
3
sudo apt-get update
sudo apt-get install python3-setuptools
sudo easy_install3 pip