Intellij没有名为' selenium'

时间:2017-12-11 21:52:42

标签: python selenium intellij-idea

enter image description here

我通过命令行安装了selenium并在Intellij上导入了库。乍一看,似乎没问题,因为软件会返回"未使用的导入语句"不幸的是,当我以任何方式使用模块时,它会返回错误。没有名为' selenium'

的模块

我再次尝试pip install selenium,然后

  

要求已经满足:硒中   C:\用户\用户\应用程序数据\本地\程序\蟒\ python36-32 \ lib中\站点包

这是我试图运行的代码:

import selenium

help(selenium)

返回相同的错误。它没有说模块没有

enter image description here

之前不存在

enter image description here

如果我只是编写随机导入,我就像运行代码一样运行。

1 个答案:

答案 0 :(得分:0)

您需要确保将此项目的项目解释程序配置为使用您的系统Python。 The JetBrains documentation for doing this is here.在IntelliJ中,基本上您需要转到项目结构设置并为项目或模块配置Python SDK(无论哪个需要)。 1

1 如果您使用的是与IntelliJ不同的JetBrains IDE,说明会有所不同,但这是您在问题中指定的内容。