Installing Plotty on Python

Question:

I’m trying to install Plotty in PyCharm. When I try to add it in the ‘Python Interpriter’ Install section it can only find plottyprint.

How can I get Plotty to install?

Many thanks for any help.

Asked By: Entropy1024

||

Answers:

I could not find the "plotty" package you are refering to on the internet. So, it could be that a typo is the reason why you are not finding the package in pycharm.

plotly

If the plotty package is a custom package, then you might want to include the source repository where the package resides, into the source repository configuration for pycharm. The referenced documentation provides much more information on how to install packages into pycharm.

Answered By: Bertolt

Plotly is not a standard Python package, so you will need to install it using a different method. Here’s how you can install Plotly,
In terminal run

pip install plotly

Answered By: Sneha s kumar
Categories: questions Tags:
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.