使用selenium时提示:ImportError:No module named selenium

用的是mac系统,已经通过sudo pip install -U selenium安装好了selenium

但是无论用命令行还是用sublime导入selenium都会提示错误。

于是查了一下python的路径,才发现我电脑有两个python路径

一个在路径/usr/local/lib/python2.7/site-packages下,而这个python是我通过brew安装的,电脑现在默认使用的是该python路径;

一个在路径/Library/Python/2.7/sete-packages下,这个是mac系统自带的python,我之前通过pip安装的就是用的该目录下的pip 来安装的,所以selenium是安装在了该目录下,导致导入selenium时出错。

 

解决办法:

在命令行输入python -m pip install -U selenium

这个时候就在/usr/local/lib/python2.7/site-packages路径下安装了selenium,这样就可以成功导入selenium了

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsffff.html