I'm a total beginner and I have a problem installing plotly to use it in my Jupyter Notebook. I have installed the Python 3 version. I am also using a Mac if that matters. I tried a variety of commands in the terminal but none of them worked.
This is my command in Jupyter Notebook:
from plotly import __version__
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
print(__version__) # requires version >= 1.9.0
This is the error I get:
ModuleNotFoundError: No module named 'plotly'
I would really appreciate some help! Thanks in advance. Desperate beginner
