【问题标题】:can't install python setup tools on linux无法在 linux 上安装 python 设置工具
【发布时间】:2014-12-03 12:44:25
【问题描述】:

我从我在 centos 上下载的安装工具发出以下命令:

python2.7 ez_setup.py install

我收到以下错误:

Downloading https://pypi.python.org/packages/source/s/setuptools/setuptools-6.0.2.zip
Extracting in /tmp/tmp8x3qjd
Now working in /tmp/tmp8x3qjd/setuptools-6.0.2
Installing Setuptools
running install
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-23056.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:

  https://pythonhosted.org/setuptools/easy_install.html

Please make the appropriate changes for your system and try again.

Something went wrong during the installation.
See the error message above.

如果使用 sudo 喜欢:

python2.7 ez_setup.py install

它说没有找到python2.7命令。

我做错了什么?

【问题讨论】:

  • sudo which python 输出什么?
  • @PadraicCunningham 使用“python which”: /usr/bin/python 。如果我使用“which python2.7”:/usr/local/bin/python2.7
  • 你在它前面加了 sudo 吗?
  • 是的,结果相同

标签: python linux django centos


【解决方案1】:

这是一个简单的问题(可能是!)。 这可能会有所帮助! 以超级用户身份输入:

wget https://bootstrap.pypa.io/ez_setup.py -O - | python - --user

这将下载并安装 setuptools 6.0.2:Python 包索引

【讨论】:

    【解决方案2】:

    您最好的选择是执行sudo $(which python2.7) ez_setup.py install 之类的操作。 which 将在您的当前 用户的${PATH} 变量中找到该程序。

    了解为什么python2.7 不在root 的路径中也是需要调查的。

    【讨论】:

    • 作为 root 我已将 python2.7 添加到我的路径中:export PATH="/usr/local/bin:$PATH" 但它仍然找不到 python2.7
    • 在您之前的评论中,您已经声明python2.7 位于/usr/local/bin/python2.7。你试过吗:sudo /usr/local/bin/python2.7 ez_setup.py install
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2015-08-19
    • 1970-01-01
    • 1970-01-01
    • 2022-07-18
    • 1970-01-01
    • 2011-02-26
    • 2012-08-18
    相关资源
    最近更新 更多