[Tutor] selenium programs stopped working

Don Jennings dfjennings at gmail.com
Tue Jun 4 20:09:52 CEST 2013


On Jun 4, 2013, at 1:49 PM, Benjamin Fishbein wrote:

>   File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 247, in rmtree
> OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/selenium-2.29.0-py2.7.egg-info/dependency_links.txt'
> 
> Is it saying that 2.29 isn't letting itself be upgraded?

More likely, the os isn't allowing the program to take whatever action it's trying to complete (I suspect the action is to delete the files since it's in rmtree). Perhaps you should issue the pip command as the superuser:

sudo pip install -U selenium

Take care,
Don



More information about the Tutor mailing list