How to download a pip package from nexus oss3

In Linux:

  1. Create the folder path. $HOME/.config/pip
  2. Create a pip.conf file in this path.
  3. 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.