17π
If itβs just this package that you canβt get to install, you could download the tarball manually, and then use pip to install it from that file. The Django download site has checksums that you can validate manually as well. I donβt use osx, but probably something like this would help:
cd /tmp
wget https://pypi.python.org/packages/source/D/Django/Django-1.5.1.tar.gz
md5sum Django-1.5.1.tar.gz
pip install Django-1.5.1.tar.gz
18π
I have the same problem when I try sudo pip install Pillow
, and I try sudo pip install --no-cache-dir Pillow
, it works for me.
- [Django]-How to execute a GROUP BY β¦ COUNT or SUM in Django ORM?
- [Django]-How to go from django image field to PIL image and back?
- [Django]-Django BooleanField as radio buttons?
- [Django]-What is the easiest way to clear a database from the CLI with manage.py in Django?
- [Django]-Django.db.migrations.exceptions.InconsistentMigrationHistory
- [Django]-Django date to javascript at the template
5π
I now had this issue several times.
Like others mentioned before me, pip install [module] --no-cache-dir
helps most of the time.
But sometimes, you got some dependencies to install first and it fails installing one of these (md5 validation failed).
Just had this problem myself. In this case, installing this dependency alone like pip install dependency
worked and after that I was able to install the first module.
Also pip install -vvv
is nice for more info gathering on general problem solving
- [Django]-IOS app with Django
- [Django]-ImportError: No module named django.core.management when using manage.py
- [Django]-How to fix VersionConflict locking failure in pipenv?