I am trying to install the SciPy stack located at https://scipy.org/stackspec.html [I am only allowed 2 links; trying to use them wisely]. I realize that there are much easier ways to do this, but I think there is a lot to be learned by doing it manually. I am relatively new to a lot of this stuff, so I apologize if I sound ignorant at any point.
I am running Windows 7 Enterprise - 64 bit. Here is what I have done so far:
Installed
python-2.7.8.msi (32-bit)from https://www.python.org/download/releases/2.7.8/Installed
numpy-1.8.1-win32-superpack-python2.7from http://sourceforge.net/projects/numpy/files/
Test:import numpy as np---> no errorsInstalled
scipylibrary,
scipy-0.14.0-win32-superpack-python2.7.exefrom (SCIPY DOT ORG LINK REMOVED) Test:import scipy as sp---> no errorsInstalled
matplotlib:matplotlib-1.3.1.win32-py2.7.exefrom (MATPLOTLIB DOT ORG LINK REMOVED)Installed
PIPby running script here: https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py I just copied-pasted script to a new file inIDLE,
saved asC:\Python27\Scripts\pip_install.pyand clickedRun>module. No errors reported.
Does the path on which I saved
pip_install.py matter?
HERE IS WHERE I FAIL
Attempted to install matlibplot dependency dateutil: Opened a Cygwin Shell, and typed
cd C:\Python27 ! is it necessary to cd to python directtory?
pip install python-dateutil
This results in the error:
bash: pip: command not found
I get the same error attempting from cmd.
Any help is appreciated; the closest I found was bash: pip: command not found. But the OSX nature of it is just enough to confise me further.
UPDATE:
I added the pip-path per Paul H's suggestion below. It made the error go away, but strangely, nothing I pip actually installs. For example, in Cygwin, I type:
cbennett2> pip install python-dateutil
cbennett2>
You can see that there is no output or feedback from the shell (which I think there should be). Then when I go to a new python shell:
>>> from dateutil.parser import parse
Traceback (most recent call last):
File "<pyshell#12>", line 1, in <module>
from dateutil.parser import parse
ImportError: No module named dateutil.parser
>>>>
This happens with all of the modules that I thought I had pip'd ... pandas, tornado, etc.