0

I use the Enthought Canopy environment with Python, v1.5.5. The Package Manager indicates I have beautifulsoup4 installed, v4.3.2-5. Yet all of the following fail, producing Import Error: No module named xxxxxx:

import beautifulsoup
import beautifulsoup4
import BeautifulSoup

Listing installed packages with pip includes ..., 'beautifulsoup4==4.3.2', ... in the list.

Community
  • 1
  • 1
Bennett Brown
  • 5,234
  • 1
  • 27
  • 35

1 Answers1

3

According to what is there in the "Quick Start" documentation paragraph:

from bs4 import BeautifulSoup
alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195