解决一些包无法下载的问题
sudo apt-get install openssl
sudo apt-get install libssl-dev
sudo apt-get install libbz2-dev
安装python3.6
wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tar.xz
tar -xvf Python-3.6.5.tar.xz
cd Python-3.6.5
#指定安装目录
./configure --prefix=/opt/python3.6
make
sudo make install
export PATH=/opt/python3.6/bin:$PATH
网友评论