pandas.read_html()返回错误
我正在网上关注Pandas课程,并查看讲师很容易导入一张表:
import pandas as pd
url= 'https://en.wikipedia.org/wiki/1976_Summer_Olympics_medal_table'
pd.read_html(url,header=0)
当我尝试时,我会遇到错误: errors
这是Anaconda问题吗?我有一个朋友从他的计算机上尝试一下,效果很好。
I'm following a pandas course online and see the instructor easily import a table with:
import pandas as pd
url= 'https://en.wikipedia.org/wiki/1976_Summer_Olympics_medal_table'
pd.read_html(url,header=0)
When I try it, I get errors:
errors
Is this an Anaconda issue? I had a friend try it from his computer and it worked just fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
多亏了7shoe指出了互联网问题,我决定使用VPN。这修复了错误。
Thanks to 7shoe pointing out an internet issue, I decided to use a VPN. This fixed the errors.