我正在尝试将Beautiful Soup4-4.1.0导入到Python 3.3中(我已将Beautiful Soup放入:C:\Python33\Lib\site-packages\BeautifulSoup\bs4
)。
使用以下内容:
from BeautifulSoup import bs4
我收到以下错误:
Traceback (most recent call last):
File "<pyshell#5>", line 1, in <module>
from BeautifulSoup import bs4
File "C:\Python33\lib\site-packages\BeautifulSoup\bs4\__init__.py", line 175
except Exception, e:
任何人都可以帮忙吗?
答案 0 :(得分:1)
我建议你阅读BeautifulSoup documentation,因为我引用了:
Beautiful Soup 4适用于Python 2(2.6+)和Python 3。
在任何情况下,BeautifulSoup 4都是通过PyPi发布的,所以如果你不能用系统打包器安装它,你可以用easy_install或pip来安装它。包名称是beautifulsoup4,相同的包适用于Python 2和Python 3。
$ easy_install beautifulsoup4
$ pip install beautifulsoup4
如果您没有安装easy_install或pip,可以下载BeautifulSoup 4源tarball并使用setup.py进行安装。 [转到该文件夹并运行命令setup.py install(假设* .py在路径扩展中已知,否则运行
c:\pythonXX\python setup.py install).