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
$ pip install --log=my-pip-debug.log --index-url=https://simple.crate.io yolk
See also¶
- http://jacobian.org/writing/when-pypi-goes-down/
- https://github.com/crateio/crate.io
- http://aboutsimon.com/2012/02/24/create-a-local-pypi-mirror/
- http://www.python.org/dev/peps/pep-0381/
- http://www.pypi-mirrors.org/
Related posts
- How to install MySQLdb in a virtualenv on Ubuntu Karmic — posted 2010-02-15
- How to install pip on Ubuntu — posted 2010-02-15
-
Using psycopg2 with virtualenv on Ubuntu
JauntyMaverick — posted 2009-07-31 - Notes on using pip and virtualenv with Django — posted 2009-05-06
- Installing Python 2.6 from source on Ubuntu Hardy — posted 2008-10-02
5
Comments
—
Comments feed for this post
#2 Daniel Altiparmak commented on 2013-05-02:
We tried to bundle all installation requirement in a buildout. Watch @ https://github.com/InQuant/buildout_crate.io
#5 Wilfred Hughes commented on 2013-10-30:
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.
#1 Karol Majta commented on 2013-03-04:
This is good ;) cheeseshop tends to be insanely slow lately.