Como usar o easy_install no terminal linux?

0

Estou instalando o py2exe usando easy_install . aqui está o que eu digitei:

easy_install py2exe

Estou usando canela com menta do linux 15. É o que eu recebo, no entanto:

[Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/test-easy->install-3460.pth'

The installation directory you specified (via --install-dir, --prefix, or the distutils default setting) was:

/usr/local/lib/python2.7/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.

então eu também tentei o pygame, mas o mesmo erro. Alguém pode me ajudar a instalar py2exe e relatar o problema? Eu sou um administrador.

    
por techgenius101 31.07.2013 / 14:57

1 resposta

4

Use com o sudo, como:

sudo easy_install py2exe

Em suma, sudo é um comando incrível que fornece tudo o que você digitar depois dele com as permissões de root. Então você tem permissões suficientes para instalá-lo com easy_install.

    
por 31.07.2013 / 15:09