写点什么

pip 配置路径要死记硬背?

发布于: 2020 年 05 月 06 日

pip config配置

一般会推荐在如下位置进行相应配置

  • C:\Users\Administrator\pip\pip.ini(windows)

  • ~/.pip/pip.conf(linux)



pip config -v list 获取配置路径

下面是windows的相关路径, linux也是类似.

# pip版本高一点才能使用这个命令, 笔者的版本是18以上
# pip config -v list
For variant 'global', will try loading 'C:\ProgramData\pip\pip.ini'
For variant 'user', will try loading 'C:\Users\Administrator\pip\pip.ini'
For variant 'user', will try loading 'C:\Users\Administrator\AppData\Roaming\pip\pip.ini'



常见pip配置

[global]
index-url = https://mirrors.aliyun.com/pypi/simple
# proxy = https://proxyaddr:port
# proxy=username:pwd@http://proxyaddr:port
# socks(need to install pysocks)
# proxy= socks5://proxy_addr:port



常见pip 国内源

  • 阿里 https://mirrors.aliyun.com/pypi/simple

  • 清华 https://pypi.tuna.tsinghua.edu.cn/simple

  • 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

  • 华中理工大学 http://pypi.hustunique.com/

  • 山东理工大学 http://pypi.sdutlinux.org/

  • 豆瓣 http://pypi.douban.com/simple/



-i 临时设置pip源

  • pip install selenium -i https://mirrors.aliyun.com/pypi/simple



发布于: 2020 年 05 月 06 日阅读数: 52
用户头像

让别人笑话去吧,走自己的路 2017.12.26 加入

行走在测试的大道ing~ csdn https://blog.csdn.net/keithsoul

评论

发布
暂无评论
pip 配置路径要死记硬背?