您的位置:

Python更换国内源

一、Python国内源

Python国内源是指Python在国内的镜像站点,通过这些镜像站点我们可以更快地下载Python相关的包和库。由于国内互联网环境的差异,使用国外源下载Python包会比较慢,因此,使用国内源可以提高下载速度,缩短等待时间。

二、Python切换国内源

Python默认的源是在国外的,如果我们想要使用国内源,需要进行切换。有多个方法可以切换Python源,这里介绍使用pip命令进行切换的方法。

# 查看当前使用的源
pip config list

# 设置使用的源为阿里云镜像
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

# 设置使用的源为清华镜像
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/

三、Python有那些国内镜像源

除了上面提到的阿里云镜像和清华镜像外,国内还有很多其他的Python镜像源,这里列举常用的几个:

  • 豆瓣源:https://pypi.douban.com/simple/
  • 中国科技大学源:https://pypi.mirrors.ustc.edu.cn/simple/
  • 华中理工大学源:http://pypi.hustunique.com/

四、更换Python版本

在使用Python的过程中,我们可能需要切换不同的Python版本。同样,切换Python版本需要更改源。

以切换Python2到Python3为例,首先需要安装Python3:

sudo apt-get update
sudo apt-get install python3

然后使用以下命令切换源:

# 查看当前使用的源
ls /usr/bin/python*

# 切换到Python3
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1

# 切换到Python2
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1

五、Python国内镜像源

Python国内镜像源应该如何选择呢?这里的建议是,选取速度快、稳定性好的镜像源。

下面以清华源为例,介绍如何更换下载源:

# 备份原配置文件
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak

# 修改源文件
sudo vim /etc/apt/sources.list

# 将下面的内容添加到文件末尾
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-security main restricted universe multiverse

# 更新源
sudo apt-get update
sudo apt-get upgrade

六、Python更换下载源

如果我们使用的是pip命令进行安装,那么还需要更换pip的下载源。同样,以清华源为例,修改方法如下:

# 备份原配置文件
mkdir ~/.pip/
cp ~/.pip/pip.conf ~/.pip/pip.conf.bak

# 修改pip配置文件
vim ~/.pip/pip.conf

# 添加以下内容
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

以上就是Python更换国内源的相关内容,通过选择好的国内源,我们可以更快地下载Python相关的包和库,提高开发效率。