Message 226169 - Python tracker
On 31.08.2014 11:34, Wilberto Morales wrote: > > New submission from Wilberto Morales: > > I know that issues like this one are usually on the users(my) fault, but I think pip might be broken this time for real. > > Every time I run pip install, a 404 error is raised: > > (venv) /tmp wil >>>> pip install flask > Requirement already satisfied (use --upgrade to upgrade): flask in /home/wil/Programming/open/skinner/venv/lib/python3.5/site-packages/Flask-0.11_dev-py3.5.egg > Downloading/unpacking Werkzeug>=0.7 (from flask) > HTTP error 404 while getting https://pypi.python.org/simple/packages/source/W/Werkzeug/Werkzeug-0.9.6.tar.gz#md5=f7afcadc03b0f2267bdc156c34586043 (from https://pypi.python.org/simple/werkzeug/) The URL is wrong. It should be: https://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-0.9.6.tar.gz#md5=f7afcadc03b0f2267bdc156c34586043 The added /simple/ in the path is causing the problem. Do you perhaps have a local config for pip that is adding this URL path ? FWIW: It "pip install werkzeug" works for me.