python设置国内镜像源
时间: 2023-09-21 19:10:25 浏览: 97
要设置Python的国内镜像源,可以按照以下步骤进行操作:
1. 在使用pip安装包时,可以使用"-i"参数指定镜像源地址。比如,可以使用以下命令安装包并指定清华镜像源:
pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple
2. 如果希望永久配置镜像源,可以在pip的配置文件中进行设置。配置文件的路径一般为用户目录下的.pip文件夹中的pip.conf文件或者pip.ini文件。打开配置文件,在文件中添加以下内容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
这样就会将默认的镜像源设置为清华镜像源。
注意:以上是以清华镜像源为例,如果希望使用其他国内镜像源,只需要将镜像源地址替换成其他镜像源的地址即可。常见的一些镜像源地址包括:豆瓣镜像源(http://pypi.douban.com/simple)、阿里云镜像源(http://mirrors.aliyun.com/pypi/simple)、中国科技大学镜像源(https://pypi.mirrors.ustc.edu.cn/simple)。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [【Python】Python设置国内镜像源](https://blog.csdn.net/weixin_42166222/article/details/114589076)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [Python配置镜像源的三种方法](https://blog.csdn.net/weixin_45779095/article/details/120143727)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文