51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

指定python的pip源

因为国内网络环境,在访问境外网站时可能会出现链接重置、访问速度慢或超时等问题。

解决办法

临时指定

在命令后加上-i参数,即可指定pip源。

pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
永久修改

修改全局配置文件中的index-url项修改为指定的URL

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
赞(0)
未经允许不得转载:工具盒子 » 指定python的pip源