使用如下命令可在命令行直接安装私服包
pip install packageName -i <私服仓库地址>/simple --trusted-host <私服域名/ip>
带上版本号就是按照版本号安装,没有的话就安装最先的版本
pip install numpy==1.22.4 -i http://192.168.1.201:9527/repository/pypi-group/simple --trusted-host 192.168.1.201
通常情况下,公司管理python工程会将依赖包写在requirments.txt
文件中,那如何将公司内部已经推送到nexus私服上的公共包也通过requirments.txt
文件安装呢?
使用如下办法可已经解决。
requirements.txt示例
# pip源中的依赖包
Twisted~=22.1.0
pymongo==3.11.2
redis~=4.1.4
# nexus私服中的依赖包
--index-url http://[domain]/repository/pypi-group/simple --trusted-host [domain]
pandas==0.0.5
numpy==0.0.5
有了以上requirements.txt
文件就可以配合shell脚本统一初始化工程了~