python-更改pip源
Posted chron
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-更改pip源相关的知识,希望对你有一定的参考价值。
python-设置国内源
Windows
临时配置
#使用阿里源安装requests
pip install requests -i https://mirrors.aliyun.com/pypi/simple
永久修改
打开文件夹 C:\\Users\\用户名\\AppData\\Roaming,新建文件pip.ini
[global]
timeout=2000
trusted-host=mirrors.aliyun.com
index-url=https://mirrors.aliyun.com/pypi/simple/
Linux/Mac【未验证】
在家(home)目录下,创建一个 .pip文件夹,进入该文件夹,创建一个文本文件:pip.conf
[global]
timeout=2000
trusted-host=mirrors.aliyun.com
index-url=https://mirrors.aliyun.com/pypi/simple/
# 或者命令行执行
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
以上是关于python-更改pip源的主要内容,如果未能解决你的问题,请参考以下文章