我是python dev的新手,最近昨天(https://www.continuum.io/downloads#windows)在我的Windows 8机器上安装了一个新的64位版本的anaconda(带有python v.2.7.12)。我立即启动了anaconda附带的Jupyter Notebook实例,并期望我能够使用BeautifulSoup。在我的notebook.ipynb文件中执行此行:from bs4 import BeautifulSoup
我收到了ImportError
:
ImportError Traceback (most recent call last)
<ipython-input-12-cbb98e44f096> in <module>()
9 #from yelp.oauth1_authenticator import Oauth1Authenticator
10
---> 11 from bs4 import BeautifulSoup
C:\Users\xxx\Anaconda2\lib\site-packages\bs4\__init__.py in <module>()
33 import warnings
34
---> 35 from .builder import builder_registry, ParserRejectedMarkup
36 from .dammit import UnicodeDammit
37 from .element import (
C:\Users\xxx\Anaconda2\lib\site-packages\bs4\builder\__init__.py in <module>()
313 # to take precedence over html5lib, because it's faster. And we only
314 # want to use HTMLParser as a last result.
--> 315 from . import _htmlparser
316 register_treebuilders_from(_htmlparser)
317 try:
C:\Users\xxx\Anaconda2\lib\site-packages\bs4\builder\_htmlparser.py in <module>()
8 ]
9
---> 10 from HTMLParser import HTMLParser
11
12 try:
ImportError: cannot import name HTMLParser
我尝试过的事情:
我一直试图在笔记本电脑中没有虚拟环境的情况下使用此设置。我认为可以使用root env。
非常感谢任何有关此问题的帮助!
答案 0 :(得分:0)
我刚刚重启了我的电脑,Jupyter Notebook检测到了HTMLParser模块。不知道我做了什么来实际修复它 - 但我猜测答案是我在原始问题中列出的以下步骤之一,然后重新启动并再次启动Jupyter。