Estoy tratando de utilizar easy_install
para instalar un módulo llamado solicitudes haciendoNo se puede utilizar easy_install para instalar módulos de Python
easy_install requests
Esto funcionó bien hace una semana cuando estaba usando Python 2.6.5 pero hoy Instalé Python 2.7.2 y luego intenté con import requests
en uno de mis scripts pero falló. Luego trató de volver a instalar las peticiones con easy_install requests
pero tengo este error
install_dir /usr/local/lib/python2.6/dist-packages/
error: can't create or remove files in install directory
The following error occurred while trying to add or remove files in the
installation directory:
[Errno 13] Permission denied: '/usr/local/lib/python2.6/dist-packages/test-easy-install-15207.pth'
The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:
/usr/local/lib/python2.6/dist-packages/
Perhaps your account does not have write access to this directory? If the
installation directory is a system-owned directory, you may need to sign in
as the administrator or "root" account. If you do not have administrative
access to this machine, you may wish to choose a different installation
directory, preferably one that is listed in your PYTHONPATH environment
variable.
For information on other options, you may wish to consult the
documentation at:
http://packages.python.org/distribute/easy_install.html
Please make the appropriate changes for your system and try again.
Así que me dijeron para ir a instalar easy_install y fui a http://pypi.python.org/pypi/setuptools y aprendió que tenía que
borrar todos setuptools * .egg y setuptools .pth archivos del directorio de paquetes de sitio del sistema (y cualquier otro directorio sys.path) PRIMERO.
Así que hice esto. Luego reinstalé setuptools desde el setuptools-0.6c11-py2.7.egg
. Parecía éxito, pero cuando me encontré easy_install requests
tengo básicamente el mismo error, excepto el directorio python2.6/dist-paquetes es ahora python2.7/site-paquetes
[email protected]:~$ easy_install requests
error: can't create or remove files in install directory
The following error occurred while trying to add or remove files in the
installation directory:
[Errno 13] Permission denied: '/usr/local/lib/python2.7/site-packages/test-easy-install-16253.write-test'
The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:
/usr/local/lib/python2.7/site-packages/
Perhaps your account does not have write access to this directory? If the
installation directory is a system-owned directory, you may need to sign in
as the administrator or "root" account. If you do not have administrative
access to this machine, you may wish to choose a different installation
directory, preferably one that is listed in your PYTHONPATH environment
variable.
For information on other options, you may wish to consult the
documentation at:
http://peak.telecommunity.com/EasyInstall.html
Please make the appropriate changes for your system and try again.
Además, cuando lo haga easy_install
y presiona el tabulador I consiga estas opciones
easy_install easy_install-2.6 easy_install-2.7
¿Cómo es que easy_install-2.6 está ahí?
y
¿Cómo me fáciles de instalar a trabajar de nuevo?
sí lo hice 'sudo easy_install requests' pero que no funcionó bien. El punto es que algo se rompe con mi camino de Python, parece. easy_install o Python 2.7.2 está buscando en las rutas equivocadas, creo. Al igual que Python 2.7.2 está buscando en el directorio python2.6/dist-packages. No es seguro. – Classer
Estoy navegando esto, también, y no tengo 'sudo' o simplemente lo usaría. – Amanda