我正在创建一个web2py应用程序,其中将使用一个简单的图表元素。 在尝试添加该元素时,我一直遇到与plotly模块有关的问题:
(ImportError(“无法导入模块'applications.APPLICATION.modules.plotly'”))
Python版本是3.7.1。
我尝试安装,更新甚至将安装定位到应用程序的特定目录:
python -m pippally安装--target / home / www-data / web2py / applications / APPLICATION / modules
import plotly.plotly as py
import plotly.graph_objs as go
data = [go.Scatterpolar(
r = [39, 28, 8, 7, 28, 39],
theta = ['A','B','C', 'D', 'E', 'A'],
fill = 'toself'
)]
layout = go.Layout(
polar = dict(
radialaxis = dict(
visible = True,
range = [0, 50]
)
),
showlegend = False
)
fig = go.Figure(data=data, layout=layout)
py.iplot(fig, filename = "radar/basic")
还有什么我应该做的吗?
谢谢。