【发布时间】: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