无法导入已安装的软件包

时间:2015-11-11 17:29:51

标签: python beautifulsoup python-import importerror enthought

我在Python,v1.5.5中使用了Enthought Canopy环境。包管理器显示我安装了beautifulsoup4,v4.3.2-5。然而,以下所有情况都失败了,产生Import Error: No module named xxxxxx

import beautifulsoup
import beautifulsoup4
import BeautifulSoup

Listing installed packages with pip在列表中包含..., 'beautifulsoup4==4.3.2', ...

1 个答案:

答案 0 :(得分:3)

根据"Quick Start" documentation paragraph

中的内容
from bs4 import BeautifulSoup
相关问题