Installing Ggplot For Python Failed With Error Code 1
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
Solution 1:
After trying all possible things suggested in various forums this is what worked for me:
- 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.
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
Post a Comment for "Installing Ggplot For Python Failed With Error Code 1"