python安装nexus私服包的两种方式(转载)

1.用命令行安装

使用如下命令可在命令行直接安装私服包

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

2.用requirments.txt文件安装

通常情况下,公司管理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脚本统一初始化工程了~

你可能感兴趣的:(python,python,Nexus)