Por que recebo erros de “permissão negada” com o Python easy_install?

6

Sou novato no Ubuntu e tenho tentado instalar o easy_install do python para não ter que lidar com os arquivos fonte quando instalar bibliotecas do Python.

Eu executei o seguinte e parece instalar os aplicativos corretos:

sudo apt-get install python-setuptools

No entanto, quando executo easy_install sqlalchemy ou easy_install pysqlite3 , não funciona.

Recebo a seguinte mensagem de erro:

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-1674.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.

Ajuda!

Abraão

    
por ATMathew 23.03.2011 / 23:13

1 resposta

6

A resposta é muito simples, apenas execute sudo easy_install .

No entanto, se por algum motivo você não quiser fazer isso, também é possível instalar pacotes Python em seu diretório inicial. O processo é descrito em detalhes em este artigo , e envolve modificar a variável de ambiente PYTHONPATH.

    
por Adam Byrtek 23.03.2011 / 23:26