[ckan-discuss] Cannot fetch index base URL http://pypi.python.org/simple/

Adrià Mercader adria.mercader at okfn.org
Fri Apr 12 18:34:41 BST 2013


Hi Ketty,

You are on the right track, just be careful with the command line commands

On 12 April 2013 10:38, Ketty Adoch <kettya298 at gmail.com> wrote:
> when i run pip install pip-requirements.txt file i get the error below

You need to run:

pip install -r pip-requirements.txt

(notice the -r)

This tells pip to read the pip-requirements.txt file, otherwise you
are trying to install a package called pip-requirements.txt


> I tried to install carrot 0.10.1 manually by running
>
> pip install carrot 0.10.1 and the error was

You need the ==, so it would be:

pip install carrot==0.10.1

But you won't need this one if you run the previous command


Adrià



More information about the ckan-discuss mailing list