Sanchit Aluna
Sanchit Aluna

Reputation: 465

Unable to import ggplot in python 3.5

i am unable to import ggplot in python 3.5. Can any body help me out on this? i think i have to install through pip install but do not know how to do it.
Below is the error.

ImportError: No module named 'ggplot'

Upvotes: 0

Views: 770

Answers (1)

GracefulCamel
GracefulCamel

Reputation: 48

What you're looking for is pip install ggplot from the command line, then you should be able to import it in a Python project.

Here's some documentation on using pip: pip help

Don't be afraid to use Google, the Python community is big and has probably answered many of your questions already.

Upvotes: 1

Related Questions