ImportError: No module named BeautifulSoup

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

    On Ubuntu 14.04 I installed it from apt-get and it worked fine:

    sudo apt-get install python-beautifulsoup

    Then just do:

    from BeautifulSoup import BeautifulSoup

提交回复
热议问题