1

I am trying to install ggplot for Python using

pip install ggplot

but I get an error message saying enter image description here

I am using Python2.7 on Windows8. I looked at the suggestions and among other things tried the suggestion here

  1. pip install wheel to install support for wheel files.
  2. pip install ggplot-0.11.5-py2.py3-none-any.whl to install the wheel. I downloaded the whl file from here.

Upon doing this I got further messages saying: Failed building wheel for scipy Failed cleaning build for scipy

In addition I still get the original error message.

Please provide suggestions.

1 Answer 1

1

After trying all possible things suggested in various forums this is what worked for me:

  1. Download numpy-1.11.2+mkl-cp27-cp27m-win_amd64.whl and scipy-0.18.1-cp27-cp27m-win_amd64.whl files from http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy to C:\Python27\Scripts directory.
  2. Run the following commands from the DOS command window in windows

    pip install numpy-1.11.2+mkl-cp27-cp27m-win_amd64.whl

    pip install scipy-0.18.1-cp27-cp27m-win_amd64.whl

They were both successfully installed.

  1. Finally

    pip install ggplot

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.