1

我想使用 tweepy 将我的 tweepy 更新到 2.1

pip install tweepy --upgrade

但我得到一个权限错误

OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/tweepy-2.0-py2.7.egg'

我已经四处寻找,但不知道如何解决这个问题..有人可以帮我吗?:( 提前非常感谢你!

4

1 回答 1

0

You need to run pip using sudo, as you're installing Tweepy in a system path.

Your command should look like this: sudo pip install tweepy --upgrade

于 2014-03-13T18:57:22.047 回答