配置文件
.pypric
这个文件位于home路径下,用于验证远程仓库。需要注意的是,不管整个组里面有多少代理仓库和host仓库。.pypric只要配置host仓库就好。
[distutils]
index-servers = pypi
[pypi]
repository: http://xxx.xxx.xxx.xxx:8100/repository/mypypi_host/
username: admin
password: <PASSWORD>
pip.ini和pip.conf
该文件也必须放在home/pip文件夹下。在windows下,配置pip.ini;linux则配置pip.conf。该文件用来配置pip install时具体拉取的仓库。如果您在nexus上配置了组,则只需要配置上组的url即可,并且赋予信任。
[global]
index = hhttp://xxx.xxx.xxx.xxx:8100/repository/mypypi_public/pypi
index-url = http://xxx.xxx.xxx.xxx:8100/repository/mypypi_public/simple
[install]
trusted-host=xxx.xxx.xxx.xxx:8100
index:用来配置pip search的位置
index-url:用来配置pip install,pip download,pip list,和pip wheel的位置
评论区