Hi all,
To use plotly.py from Spyder, hereโs what I would recommend:
- Download and install the anaconda Python distribution: https://www.anaconda.com/download/
- Install both Spyder and plotly.py using conda.
$ conda install -c plotly plotly spyder
- Create plots from spyder using the
plotly.plotly.plot
(online) orplotly.offline.plot
(offline) functions. Each of these will open the plots in your default web browser. - If you want static image export support, install the
plotly-orca
andpsutil
packages (See https://github.com/plotly/plotly.py#static-image-export)
$ conda install -c plotly plotly-orca psutil
-Jon