How to download a pip package from nexus oss3
Oct 11, 2021 · 1 min read · 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>. ...
Join discussion