I am using Python 3.6b3 for a long running project, developing on Windows.
For this project I also need NumPy.
I\'ve tried Python36 -m pip install numpy, but it seems that p
Pip is always be installed in subdirectory \Scripts of the Python 3.6 install directory.
Open command prompt in windows, change directory to \Scripts and input pip list, you will see what has been installed, then input pip install numpy, and the numpy will be installed.