在这里以windows用户为例,MAC用户找找别的例子吧!
在c:\user\当前用户\目录下新建 pip 目录,然后新建pip.ini文件,将下述内容拷贝进去
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=https://pypi.tuna.tsinghua.edu.cn
保存一下。再次使用python -m pip install python模块 时,会快很多的。
在此有一个小提醒pip install python模块 与python -m pip install python模块 的区别是,pip install会直接安装在默认的python下, python -m pip 安装的是你当前运行的python下。如果有多个版本的python时,建议使用python -m,如果只有一个python时,就无所谓了。