AttributeError: module 'dash.dash' has no attribute 'dependencies'
AttributeError: module 'dash.dash' has no attribute 'dependencies' Below is my error, Traceback (most recent call last): File "app.py", line 54, in dash.dependencies.Output('react-graph','figure'), AttributeError: module 'dash.dash' has no attribute 'dependencies' Below are my imports, from dash import dash import dash_core_components as dcc import dash_html_components as html from dash.dependencies import Input, Output import plotly.graph_objs as go import psycopg2 import os import flask Below is my callback function @app.callback( dash.dependencies.Output('react-graph','figure'), [dash.dependencies.Input('reg_col','value')] ) I do not have any file named dash.py in my current directory. I have also tried to change to the import dash from dash to just import dash. The former gives me the below error. Dash was not successfully imported. Make sure you don't have a file named 'dash...