我正在使用Windows 10上的python 2.7,而我正在使用Spyder IDE。我试图从以下链接中提取表格:
http://www.espn.com/nhl/statistics/player/_/stat/points/sort/points/year/2015/seasontype/2
使用熊猫。我的代码是:
import pandas as pd
import html5lib
url = 'http://www.espn.com/nhl/statistics/player/_/stat/points/sort/points/year/2015/seasontype/2'
table = pd.read_html(url)
但是我收到的错误信息是没有安装html5lib模块。我用pip安装了它,但即使重启Spyder后,我仍然收到消息
ImportError: No module named html5lib
我到处寻找,似乎没有任何解决方案对我有用:unistalling和安装html5lib,更新pip,更新anaconda3等等。任何人都可以帮助我吗?
修改
通过Spyder中的命令窗口,我使用了
easy_install html5lib
现在,运行pip list,html5lib(1.0b10),但我仍然收到相同的消息:ImportError:没有名为html5lib的模块。