在pycharm中安装beautifulsoup后导入错误

时间:2019-02-09 17:45:00

标签: python beautifulsoup pycharm

我使用pycharm并创建了scratch.py​​文件。在此文件中,我要导入beautifulsoup4。在pycharm中,我确实使用了项目interpereter并添加了beautifulsoup4。 之后,我希望在我的代码中导入beautifulsoup4程序包,但它给出了一个错误:

Traceback (most recent call last):
  File "C:/Users/Arthur/.PyCharmCE2018.3/config/scratches/scratch.py", line 2, in <module>
    import beautifulsoup
ModuleNotFoundError: No module named 'beautifulsoup'

我尝试了命令提示符,并且也通过pip install --upgrade beautifulsoup4成功安装了

import os
import beautifulsoup

1 个答案:

答案 0 :(得分:0)

根据official documentation,导入“美丽汤4”的正确方法如下:

from bs4 import BeautifulSoup