plotly.io.to_image无法执行

时间:2019-12-13 06:47:37

标签: python plotly plotly-python

我正在尝试执行以下代码:

gaugefig = go.Figure(go.Indicator(
mode=“gauge+number”,
value=count,
gauge={‘axis’: {‘range’: [1, count]}},
domain={‘x’: [0, 1], ‘y’: [0, 1]},
title={‘text’: “Number of students participated”, ‘align’: ‘center’, ‘font’: {‘size’: 38}}))

gaugefig2=plotly.io.to_image(gaugefig,format=‘png’)
gaugefig2.show()

我收到错误‘ValueError: 需要orca可执行文件才能将图形导出为静态图像, 但无法在系统路径上找到它。’

但是我有

  1. 已安装的orca。
  2. 在命令提示符下运行此命令:“ plotly.io.orca.config.executable = r” C:\ Users \ ezhilan \ AppData \ Roaming \ Python \ Python38 \ site-packages \ orca'
  3. 然后我尝试运行我的代码。但我仍然遇到此错误。

0 个答案:

没有答案