pip安装tweepy错误

时间:2018-01-09 20:34:48

标签: python macos pip tweepy

当我尝试使用pip安装tweepy(pip install tweepy)时,我的mac(10.12.3)上出现以下错误。请帮忙。

OSError: [Errno 1] Operation not permitted: '/var/folders/s0/0j_bp8b96bl2mzltwxnc56300000gn/T/pip-9zf_EM-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info

2 个答案:

答案 0 :(得分:1)

您尚未授予程序编辑权限。您可能必须是管理员才能执行此操作,或以管理员身份运行该程序。它失败,因为它没有权限。在命令之前放置sudo可能有效。

答案 1 :(得分:1)

感谢大家的回复!这看起来像是pip的一个问题。已成功安装使用sudo pip install tweepy --user。

来源:http://marcelog.github.io/articles/mac_osx_python_pip_install_operation_not_permitted.html