SaltyCrane Blog — Notes on JavaScript and web development

How to use pip with crate.io

Here's how to use pip with crate.io (in case pypi.python.org goes down):
$ pip install --index-url=https://simple.crate.io yolk 
Or with logging to see what's happening:
$ pip install --log=my-pip-debug.log --index-url=https://simple.crate.io yolk 

See also

Comments


#1 Karol Majta commented on :

This is good ;) cheeseshop tends to be insanely slow lately.


#3 Kurt commented on :

Thanks! I put this in my pip.conf


#4 Manuel Gutierrez commented on :

You must check this. https://github.com/wolever/pip2pi


#5 Wilfred Hughes commented on :

pip offers download caching, which is a huge help to performance even when PYPI is behaving itself. Just add to your ~/.pip/pip.conf:

[global]
download-cache = /mnt/pip-cache

Relevant Stack Overflow question. I wish pip did this by default.