) When I want to import dash_core_components
import dash_core_components as dcc
it throws the following error:
File "d:\Desktop\python_projekte\ds2.py", line 1, in <module>
import dash_core_components as dcc
File "C:\Python39\lib\site-packages\dash_core_components\__init__.py", line 1, in <module>
from dash.dcc import * # noqa: F401, F403, E402
ModuleNotFoundError: No module named 'dash.dcc'
But I acually installed dash_core_components and I also tried updating it, but I still receive this error. I've got also a similar error with dash_html_components.
I really don't know what to do. Does someone have an advice? :-)
pip install -U dashor if you are using environments to manage packages, double check you have dash installed in the environment you're using or that you have the correct environment activated.