我在GitHub(https://github.com/amyoshino/Dash_Tutorial_Series/blob/master/ex4.py)上找到了此脚本(教程),并且试图在本地计算机上运行。 不幸的是我有和错误
如果有人可以帮助我运行此脚本,我将不胜感激。 也许这很容易,但是我是编码新手。
谢谢!
答案 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软件包安装到的目录。