调教 Pip

配置 Pip 源

Pip 源配置文件可以放置的位置

Linux/Unix

  • /etc/pip.conf
  • ~/.pip/pip.conf
  • ~/.config/pip/pip.conf

Mac OSX

  • ~/Library/Application Support/pip/pip.conf
  • ~/.pip/pip.conf
  • /Library/Application Support/pip/pip.conf

Windows

  • %APPDATA%\pip\pip.ini
  • %HOME%\pip\pip.ini
  • C:\Documents and Settings\All Users\Application Data\PyPA\pip\pip.conf (Windows XP)
  • C:\ProgramData\PyPA\pip\pip.conf (Windows 7及以后)

Pip 配置的主要一些配置

可以配置如下:

阿里源

1
2
3
4
5
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=mirrors.aliyun.com
1
2
pip config set global.index-url 'https://mirrors.aliyun.com/pypi/simple/'
pip config set install.trusted-host 'mirrors.aliyun.com'

豆瓣源

1
2
3
4
index-url = http://pypi.douban.com/simple # 豆瓣源,可以换成其他的源
trusted-host = pypi.douban.com            #添加豆瓣源为可信主机,要不然可能报错
disable-pip-version-check = true          #取消pip版本检查,排除每次都报最新的pip
timeout = 120

Poetry 配置源

project.toml 中添加

1
2
3
4
5
poetry source add --default aliyun "https://mirrors.aliyun.com/pypi/simple/"

# 私有地址
poetry config repositories.lrh3321 "http://pypi.lrh3321.win/simple/"
poetry config http-basic.lrh3321 <username> <password>

或直接编辑 pyproject.toml

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple/"
default = true

# 配置其他源,如私有源
[[tool.poetry.source]]
name = "lrh3321"
url = "http://pypi.lrh3321.win/simple/"
secondary = true
Licensed under CC BY-NC-SA 4.0
最后更新于 Apr 08, 2023 20:12 +0800
Built with Hugo
主题 StackJimmy 设计