我该如何运行该脚本

时间:2019-03-02 00:42:19

标签: python html flask plotly plotly-dash

我在GitHub(https://github.com/amyoshino/Dash_Tutorial_Series/blob/master/ex4.py)上找到了此脚本(教程),并且试图在本地计算机上运行。 不幸的是我有和错误 enter image description here

如果有人可以帮助我运行此脚本,我将不胜感激。 也许这很容易,但是我是编码新手。

谢谢!

1 个答案:

答案 0 :(得分:0)

您可能只需要pip install dash-core-components库!

看看Dash Installation文档。当前建议运行以下命令:

pip install dash==0.38.0  # The core dash backend
pip install dash-html-components==0.13.5  # HTML components
pip install dash-core-components==0.43.1  # Supercharged components
pip install dash-table==3.5.0  # Interactive DataTable component (new!)
pip install dash-daq==0.1.0  # DAQ components (newly open-sourced!)

有关使用pip安装Python软件包的更多信息,请参见:Installing Packages

如果您已经运行了这些命令,但Flask仍然抛出该错误,则可能是路径/环境问题,并且应该在有关Python设置的问题中提供更多信息。


此外,只是为了让您了解如何解释此错误消息:

  • 通常最简单的方法是从底部开始,然后逐步提高。
  • 在这里,最底下的消息是一个FileNotFound错误。
  • 程序正在Python37/lib/site-packages文件夹中寻找文件。这表明您正在寻找Python软件包。这是使用pip之类的工具时Python软件包安装到的目录。