1

我试过了pip install matplotlib-1.3.0easy_install matplotlib-1.3.0 而且python setup.py install

但我总是收到以下错误:

error: can't create or remove files in install directory

尝试在安装目录中添加或删除文件时发生以下错误:

[Errno 13] Permission denied: '/software/lsstlib/Import/enthoughtPython/epd-7.3-2-rh5-x86_64/lib/python2.7/site-packages/test-easy-install-26539.write-test'

您指定的安装目录(通过 --install-dir、--prefix 或 distutils 默认设置)是:

/software/lsstlib/Import/enthoughtPython/epd-7.3-2-rh5-x86_64/lib/python2.7/site-packages/

由于我没有写入目录的权限,或者没有 sudo 密码,我该如何安装 matplotlib?

谢谢。

4

1 回答 1

0

为您的 pip/easy_install/python setup.py 安装添加一个 --user 选项。(PEP370)。

于 2013-08-14T00:43:36.867 回答