JH5774
JH5774

Reputation: 31

Download error on http://pypi.python.org/simple/ReviewBoard/: timed out -- Some packages may not be found

Well...

I was faced a problem when I try to install ReviewBoard....

Below is error message.. Is there a solution?

P.S. My network is under proxy.

$ sudo easy_install ReviewBoard Searching for ReviewBoard Reading http://pypi.python.org/simple/ReviewBoard/

Download error on http://pypi.python.org/simple/ReviewBoard/: timed out -- Some packages may not be found!

Reading //pypi.python.org/simple/ReviewBoard/

Download error on //pypi.python.org/simple/ReviewBoard/: timed out -- Some packages may not be found!

Couldn't find index page for 'ReviewBoard' (maybe misspelled?)

Scanning index of all packages (this may take a while)

Reading //pypi.python.org/simple/

Download error on //pypi.python.org/simple/: timed out -- Some packages may not be found!

No local packages or download links found for ReviewBoard

error: Could not find suitable distribution for Requirement.parse('ReviewBoard')

Upvotes: 2

Views: 7335

Answers (1)

ursids
ursids

Reputation: 11

Try the following in your terminal before issuing the easy_install command

export HTTP_PROXY=http://user:[email protected]:port
export HTTPS_PROXY=http://user:[email protected]:port

Upvotes: 1

Related Questions