0

I have a private pypi repository hosted on Nexus; I am able to upload the package using twine but when I run pip3 install it fails

Upload command:

twine upload --repository-url https://nexus.mycompany.com/repository/repos-py-development/ --username ***** --password ***** dist/

pip install

pip3 install plugin-sdk --extra-index-url https://nexus.mycompany.com/repository/repos-py-development/
Looking in indexes: https://pypi.org/simple, https://nexus.mycompany.com/repository/repos-py-development/
ERROR: Could not find a version that satisfies the requirement plugin-sdk (from versions: none)
ERROR: No matching distribution found for plugin-sdk
Sundeep Gupta
  • 1,887
  • 3
  • 24
  • 35

1 Answers1

0

Adding simple to the repository worked.

pip3 install plugin-sdk --extra-index-url https://nexus.mycompany.com/repository/repos-py-development/simple

Sundeep Gupta
  • 1,887
  • 3
  • 24
  • 35