How to download a pip package from nexus oss3
In Linux:
- Create the folder path.
$HOME/.config/pip
- Create a pip.conf file in this path.
- Add the below lines in the pip.conf file.
[global]
index = <your_repo_uri>/pypi
index-url = <your_repo_uri>/simple
Now run pip install <your_package_name>
.
Your custom python package from the hosted python repository in nexus oss3 will be downloaded.