我是Python新手。我使用PyCharm创建了一个新的Python项目。当我运行我的小型独立程序时,我收到以下错误。
"C:\D drive\Workspace\Python_scripts\MyFirstProj\venv\Scripts\python.exe" "C:/D drive/Workspace/Python_scripts/MyFirstProj/searchproducts.py"
Traceback (most recent call last):
File "C:/D drive/Workspace/Python_scripts/MyFirstProj/searchproducts.py", line 2, in <module>
from selenium.webdriver.common.by import By
ModuleNotFoundError: No module named 'selenium.webdriver.common'
Process finished with exit code 1
我已经安装了PIP并通过PIP安装了Selenium。
我在环境变量中都有Python,Python脚本,Chrome驱动程序路径。有人可以帮我理解为什么我会收到这个错误吗?
答案 0 :(得分:1)
PyCharm正在使用VirtualEnviroment。 您可能已经通过PIP手动安装python来安装库。
阅读文档以使用PyCharm安装软件包。 https://www.jetbrains.com/help/pycharm/installing-uninstalling-and-upgrading-packages.html
我认为文档会对您有所帮助。