Почему я получаю & ldquo; разрешение отклонено & rdquo; ошибки с Python easy_install?

Я новичок в Ubuntu и пытаюсь установить пакет python easy_install, чтобы при установке библиотек Python мне не приходилось иметь дело с исходными файлами.

Я выполнил следующее, и, кажется, установил правильные приложения:

sudo apt-get install python-setuptools

Однако, когда я запускаю easy_install sqlalchemy или easy_install pysqlite3, это не работает.

Я получаю следующее сообщение об ошибке:

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.

Помощь!

Авраам

6
задан 8 July 2012 в 13:06

1 ответ

Ответ очень прост, просто запустите sudo easy_install.

Однако, если по какой-то причине вы не хотите этого делать, также возможно установить пакеты Python в ваш домашний каталог. Процесс подробно описан в этой статьи и включает в себя изменение переменной окружения PYTHONPATH.

0
ответ дан 8 July 2012 в 13:06

Другие вопросы по тегам:

Похожие вопросы: