Pinvon's Blog

所见, 所闻, 所思, 所想

Ubuntu 16.04LTS安装Python3

安装

sudo add-apt-repository ppa:jonathonf/python-3.6

# 回车

sudo apt-get update
sudo apt-get install python3.6

配置默认python3

由于Ubuntu16.04TLS默认使用的Python3的版本为Python3.5, 此处将其修改成Python3.6.

sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2
sudo update-alternatives --config python3
python3 -V  # 显示 Python 3.6.x

安装pip

sudo apt-get install python3-pip
pip3 --version

配置pip

pip 默认从国外下载, 有时候下载速度较慢, 建议配置成国内源. 有两种方法从国内源下载.

手动指定安装源

pip -i http://pypi.douban.com/simple install dnspython

配置pip.conf文件

如果每次安装模块都要指定安装源, 则比较麻烦. 通过配置 pip.conf 文件, 每次都从该文件中读取安装源.

cd ~
mkdir .pip
cd .pip
emacs pip.conf

编辑内容如下:

#pip安装需要使用的https加密,所以在此需要添加trusted-host 
[global]
trusted-host = mirrors.ustc.edu.cn
index-url = https://mirrors.ustc.edu.cn/pypi/web/simple

Comments

使用 Disqus 评论
comments powered by Disqus