Windows下更改pip源的方法
程序员文章站
2024-01-04 22:06:58
...
首先确定pip的位置,在命令提示符下运行:
C:\Users\ljm>where pip
我这里有这样的3条记录:
C:\Users\ljm\AppData\Local\Continuum\anaconda3\Scripts\pip.exe
C:\Python27\Scripts\pip.exe
C:\Users\ljm\AppData\Local\Programs\Python\Python37\Scripts\pip.exe
想给哪个pip更改源,就在哪条记录中与Scripts同一级创建一个pip.ini文件。
比如我要给anaconda环境下更改源,就创建一个这样的pip.ini文件:
C:\Users\ljm\AppData\Local\Continuum\anaconda3\pip.ini
文件内容:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = https://mirrors.aliyun.com