使用以下命令行安装Selenium时:
pip install -U selenium
我收到以下警告和错误:
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'src_root'
warnings.warn(msg)
warning: no files found matching 'docs/api/py/index.rst'
error: could not create '/Library/Python/2.7/site-packages/selenium': Permission denied
有什么建议吗?
答案 0 :(得分:3)
您似乎无权写入系统库。你能试试“sudo pip install -U selenium”吗?
[从评论中移出]
答案 1 :(得分:2)
我最近偶然发现了同样的问题。 pip install --user selenium
似乎是安装软件包的更简洁的方法,您可以在here上的--user
选项上找到更多信息