Python - o módulo pip instala 2.6 em vez de 2.7

1

Eu uso o Django 1.3 com Python 2.7 no Ubuntu 10.04.

$ python
Python 2.7.1 ...
>>>

Estou tentando instalar o módulo python django-grappelli .

$ pip install django-grappelli

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

Aparentemente, ele está sendo instalado na versão do repo do Python (2.6) em vez de 2.7. Como posso instalá-lo em 2.7?

    
por Pierre de LESPINAY 27.12.2011 / 09:59

1 resposta

1

Execute pip com python 2.7. Note que o python2.7 não é fornecido ou suportado pelo Lucid (10.04)

    
por tumbleweed 27.12.2011 / 11:04