Reputation: 649
I am trying to install ggplot for Python using
pip install ggplot
but I get an error message saying
I am using Python2.7 on Windows8. I looked at the suggestions and among other things tried the suggestion 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.
Upvotes: 1
Views: 611
Reputation: 649
After trying all possible things suggested in various forums this is what worked for me:
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.
Finally
pip install ggplot
Upvotes: 1