2015-11-04 67 views
0

我想安装Selenium,并遇到这些错误。我看了一些Git中心修复,但没有任何帮助。有没有人认识到这个问题,并有任何想法如何解决它?Selenium无法安装,因为错误

Jasons-MBP:~ jasonmcgriff$ pip install selenium 
Collecting selenium 
Downloading selenium-2.48.0-py2-none-any.whl (872kB) 
100% |████████████████████████████████| 872kB 421kB/s 
Installing collected packages: selenium 
Exception: 
Traceback (most recent call last): 
File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/basecommand.py", line 211, in main 
status = self.run(options, args) 
File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/commands/install.py", line 311, in run 
root=options.root_path, 
File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/req/req_set.py", line 646, in install 
**kwargs 
File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/req/req_install.py", line 803, in install 
self.move_wheel_files(self.source_dir, root=root) 
File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/req/req_install.py", line 998, in move_wheel_files 
isolated=self.isolated, 
File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/wheel.py", line 339, in move_wheel_files 
clobber(source, lib_dir, True) 
File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/wheel.py", line 310, in clobber 
ensure_dir(destdir) 
File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/utils/__init__.py", line 71, in ensure_dir 
os.makedirs(path) 
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os. py", line 157, in makedirs 
mkdir(name, mode) 
OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site- packages/selenium'enter code here 
+3

'权限被拒绝',这很明显:您无法访问'pip'的安装位置。尝试运行状态较高的'pip'('sudo'模式)。例如:'sudo pip install selenium' – usandfriends

+0

谢谢你的帮助。它正在工作。 –

+0

这不是一个编程问题......这是Selenium安装的支持问题。 – JeffC

回答

0

如果你看看你贴的最后一个错误......

OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site- packages/selenium'

有下/selenium*

已有的东西我有同样的问题与此路径...

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

通过简单地删除这样的...

sudo rm -r /Library/Python/2.7/site-packages/selenium-2.42.1-py2.7.egg-info

然后重新安装它的工作,并更新到最新版本。我用这个...

pip install --upgrade selenium

注意我没有使用sudo或试图以root身份运行。

相关问题