Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create and use a PyPi proxy repository on nexus

Tags:

python

pip

Running Nexus 3 OSS 3.6.0-02 I have created a pypi proxy repository on nexus using this guide:

https://help.sonatype.com/repomanager3/pypi-repositories

With the following info:

Format: pypi
Type: proxy
URL: https://mynexus:9666/nexus/pypi-proxy/
Remote Storage:https://pypi.org/
Authentication: Username/Password

Now I would like to install a package and use the above proxy. Based on:

How to get pip to work behind a proxy server

and this example:

pip install --proxy http://user:password@proxyserver:port <package>   

I have tried:

pip install --proxy https://myuser:mypassword@mynexus:9666/nexus/pypi-proxy/ testinfra --no-cache-dir

But I get:

Collecting testinfra
  Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', error('Invalid response from tunnel request',))': /simple/testinfra/

Is there and error in my command line? Or something I need to configure on the server/repository?

like image 923
u123 Avatar asked Feb 06 '19 13:02

u123


2 Answers

Just add /simple at the end of index URL

pip install --index-url https://myuser:mypassword@mynexus:9666/nexus/pypi-proxy/simple/

like image 121
Max Avatar answered Oct 26 '22 21:10

Max


export PYPI_USER=<Username>
export PYPI_PASSWD=<Password>
export PYPI_HOST=mynexus:9666/nexus/pypi-proxy/simple/

pip config --global set global.index-url https://$PYPI_USER:$PYPI_PASSWD@$PYPI_HOST
pip config --global set global.trusted-host $PYPI_HOST

pip install testinfra
like image 2
cyborg Avatar answered Oct 26 '22 22:10

cyborg