Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I use Django 1.3 with Python 2.7 on Ubuntu 10.04.

$ python
Python 2.7.1 ...
>>>

I'm trying to install the python module django-grappelli.

$ pip install django-grappelli

Requirement already satisfied: django-grappelli in /usr/local/lib/python2.6/dist-packages

Apparently it's installing into the Python repo's version (2.6) instead of 2.7.
How can I install it on 2.7 ?

share|improve this question

1 Answer

up vote 1 down vote accepted

Run pip with python 2.7. Note that python2.7 isn't provided or supported for Lucid (10.04)

share|improve this answer
Finally I uninstalled pip with Synaptic and reinstalled it with easy_install – Pierre de LESPINAY Dec 27 '11 at 10:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.