ImportError: No module named BeautifulSoup

前端 未结 8 1164
無奈伤痛
無奈伤痛 2020-11-28 23:50

I have installed BeautifulSoup using easy_install and trying to run following script

from BeautifulSoup import BeautifulSoup
import re

doc = [\'         


        
8条回答
  •  遥遥无期
    2020-11-29 00:39

    if you installed its this way(if you not, installing this way):

    pip install beautifulsoup4
    

    and if you used its this code(if you not, use this code):

    from bs4 import BeautifulSoup
    

    if you using windows system, check it if there are module, might saved different path its module

提交回复
热议问题