点安装错误:[Errno13]权限被拒绝

时间:2018-08-24 16:39:26

标签: python python-2.7 pip chmod

我正在尝试将nltk软件包安装到我的Python2.7中,但是遇到了一些麻烦。我已经检查了其他页面,但似乎对我没有用。

当我尝试安装nltk时,收到一条消息:

Could not find a version that satisfies the requirement nltk (from    versions: )
No matching distribution found for nltk

哪个引导我使用:

curl https://bootstrap.pypa.io/get-pip.py | python

然后它似乎可以工作,但是随后出现权限错误[Errno13]:

[Errno 13] Permission denied: '/Library/Python/2.7/site-packages/pip'
Consider using the `--user` option or check the permissions.

因此,我尝试将sudo chmod 700和770赋予目录文件,但始终出现相同的权限错误。我觉得我想念什么。任何帮助,将不胜感激!

1 个答案:

答案 0 :(得分:1)

您的问题是您正在尝试将软件包添加到系统python。许多Mac用户使用自制软件安装python,以便他们不更改其系统python配置。这个SO在OSX / Macos上对python有很好的描述:

What should be my python packages path for a user install on MacOS?