关于jupyter notebook的Initializing from file failed报错

原语句

df = pd.read_csv(r'D:/中国城市人口数据.csv',encoding='gbk')

报错显示为

解决方法为

 df = pd.read_csv('D:/中国城市人口数据.csv',engine = 'python')

关于jupyter notebook的Initializing from file failed报错_第1张图片

 字符英文状态注意

是自己写作业过程性记录,不太全

问题详细参考http://t.csdn.cn/lASvN

 

你可能感兴趣的:(jupyter,python,ide)