Install Plotly in Anaconda

If you don’t care which version of Plotly you install, just use pip.

pip install plotly is an easy way to install the latest stable package for Plotly from PyPi.

pip is a useful package and dependency management tool, which makes these things easy, but it should be noted that Anaconda’s conda tool will do the same thing.

pip will install to your Anaconda install location by default.

Check out this description of package and environment management between pip and conda.

Edit: The link will show that conda can handle everything pip can and more, but if you’re not trying to specify the version of the package you need to install, pip can be much more concise.

Leave a Comment