Jake
Jake

Reputation: 637

windows 10 pip install 'Failed Connection'

This is the error I get from running pip install numpy on windows command prompt. This error also occurs with the other packages I have tried. I logged into cmd as an admin, but ended up with the same result. I am connected to the internet so that is not the issue. Any help would be appreciated.

 Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x05DD03F0>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed')': /simple/numpy/
  Could not find a version that satisfies the requirement numpy (from versions: )
No matching distribution found for numpy

Upvotes: 2

Views: 1803

Answers (1)

shaik moeed
shaik moeed

Reputation: 5785

In windows 10: Go to start->Network proxy settings->disable 'Use a proxy server' in Manual proxy setup.

Now, try to install again using pip install numpy

Hope, this helps.

Upvotes: 2

Related Questions