【Python基础001】国内镜像源文件下载地址及永久配置下载地址方法

1、国内Python镜像源下载地址

  • 阿里云

  • http://mirrors.aliyun.com/pypi/simple/

  • 中国科技大学

  • https://pypi.mirrors.ustc.edu.cn/simple/

  • 豆瓣(douban)

  • http://pypi.douban.com/simple/

  • 清华大学

  • https://pypi.tuna.tsinghua.edu.cn/simple/

  • 中国科学技术大学

  • http://pypi.mirrors.ustc.edu.cn/simple/

2、永久配置镜像源方法

  • 以清华源为例

(1)在python中永久配置清华源方法

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

(2)在conda永久配置清华源方法

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn

(3)conda 恢复默认源

conda config --remove-key channels

3、在用户文件目录中创建一个pip.ini文件

在C盘用户文件(<电脑用户名>文件夹)下创建一个.txt文件命名为pip.ini文件(注意,这里需要把原来的.txt后缀删掉)

创建好后,用以记事本的模式打开,在文件内写入

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

保存 关闭

你可能感兴趣的:(Python基础,python,conda,开发语言)