pip安装selenium权限错误

pip install selenium permission error

我正在尝试使用默认 python 在 mac 上安装 selenium 3,即 /usr/bin/python 但是当我尝试使用

安装它时 https://pypi.org/project/selenium/

pip install selenium 我收到错误 收集硒 使用缓存

https://files.pythonhosted.org/packages/41/c6/78a9a0d0150dbf43095c6f422fdf6f948e18453c5ebbf92384175b372ca2/selenium-3.13.0-py2.py3-none-any.whl
Installing collected packages: selenium
Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/selenium'
Consider using the `--user` option or check the permissions.

如果我使用 --user 作为 pip install --user selenium 安装,它可以工作,但是当我 运行 使用代码

进行测试时
driver = webdriver.Safari(executable_path="/Users/Desktop/selenium-server-standalone-3.13.0.jar")

我收到错误

WebDriverException: Message: 'selenium-server-standalone-3.13.0.jar' executable may have wrong permissions. 

为什么我会收到错误消息,有没有没有 --usersudo 的安装方法,因为即使有这些选项也不起作用。

您使用 --user 解决了第一个问题 - 第二个问题是另一个问题。

这一行 webdriver.Safari(executable_path=...) 指向错误的路径 - 您应该将其指向 Safari 10 附带的 savaridriver 可执行文件的任何位置,而不是指向 .jar 文件。

像这样:

driver = webdriver.Safari(executable_path='/Applications/Safari.app/Contents/MacOS/safaridriver')

只需检查 mac 中的路径并找出 safaridriver 的位置。