I’m using Django 1.3 with Python 2.7 in Ubuntu.
Trying to install django-grappelli with pip
$ pip install django-grappelli
It apparently installs for Python 2.6 (the distribution version)
Requirement already satisfied: django-grappelli in /usr/local/lib/python2.6/dist-packages
Maybe because I installed pip with apt-get ?
How can I install grappelli for my Python 2.7 ?
Python 2.7 packages should be in a different place then Python 2.6 packages. For you then
/usr/local/lib/python2.7/site-packages/I think.You can tell PIP to install into specific location by:
You can also use version specific commands to do the installation.
If
pip-2.7command is not found useeasy_install-2.7to install pip.