Pip install error: [Errno13] Permission Denied

Pip install error: [Errno13] Permission Denied

我正在尝试将 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,但一直出现相同的权限错误。我觉得我错过了什么。任何帮助,将不胜感激!

您的问题是您正在尝试向系统添加包 python。许多 Mac 用户使用自制程序安装 python,这样他们就不会更改系统 python 配置。这个 SO 在 OSX/Macos:

上对 python 有很好的描述

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