We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to the migration of plotly to chart_studio, some errors happen:
ImportError: The plotly.plotly module is deprecated, please install the chart-studio package and use the chart_studio.plotly module instead.
How to fix?
File chart.py line 18 change import plotly.plotly as py'for import chart_studio.plotly as py
File tools.py replace all plotly to chart_studio EXCEPT, pyo = plotly.offline
With that all seems to work fine! :)
The text was updated successfully, but these errors were encountered:
pyo = plotly.offline NameError: name 'plotly' is not defined
Sorry, something went wrong.
No branches or pull requests
Due to the migration of plotly to chart_studio, some errors happen:
ImportError:
The plotly.plotly module is deprecated,
please install the chart-studio package and use the
chart_studio.plotly module instead.
How to fix?
File chart.py line 18 change import plotly.plotly as py'for import chart_studio.plotly as py
File tools.py replace all plotly to chart_studio EXCEPT, pyo = plotly.offline
With that all seems to work fine! :)
The text was updated successfully, but these errors were encountered: