ImportError: Plotly express requires pandas to be installed.报错?
这是我的代码
import plotly.express as px
fig = scatter(
x=lons,y=lats,
labels={'x':'经度','y':'纬度'},
range_x=[-200,200],
range_y=[-90,90],
width=800,
height=800,
title='全球地震散点图',
)
fig.write_html('global_earthquakes.html')
fig.show
显示ImportError: Plotly express requires pandas to be installed.但是模块我已经安装了为什么还是报错?
回答:
- 如果使用virtualenv运行这段代码, 可以检查下pandas是安装在系统Python里, 还是安装在 virtualenv 里.
- 如果是在Jupyter Notebook中运行这段代码, 且是引用Plotly.express 后才安装pandas, 可以试试重启kernel
以上是 ImportError: Plotly express requires pandas to be installed.报错? 的全部内容, 来源链接: utcz.com/p/938038.html