ImportError: No module named BeautifulSoup

前端 未结 8 1181
無奈伤痛
無奈伤痛 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:29

    First install beautiful soup version 4. write command in the terminal window:

    pip install beautifulsoup4
    

    then import the BeutifulSoup library

提交回复
热议问题