临时指定镜像源
通过参数 -i 指定镜像源,适合临时使用一下,以安装PyMySQL为例,命令如下:
阿里云
pip install -i https://mirrors.aliyun.com/pypi/simple/ PyMySQL
清华源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyMySQL
在Windows中设置镜像源
可以直接在 C:\Users\用户名\AppData\Roaming\pip 目录中创建文件pip.ini,然后输入以下内容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
或者直接通过以下命令设置也可以:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
输出:
Writing to C:\Users\用户名\AppData\Roaming\pip\pip.ini
在deepin中设置镜像源
deepin系统中pip配置文件路径是:/home/用户名/.config/pip/pip.conf,文件内容同上,也可以使用pip config 命令配置。
Post a comment now »
本文目前不可评论
Sorry, the comment form is closed at this time.
No comments yet.