numpy - How to install in python 3.4 - .whl files -


i tried re-install numpy python 3.4, since got new computer, , struggling. on windows 8.1, , remember used .exe file did me. however, time given .whl file (apparently "wheel" file), cannot figure out how install.

other posts have explained have use pip, explanations of how install these files have been able find dreadful. command "python install pip" or "pip install numpy" or other various commands have seen return error "python not recognized internal or external command, operable program or batch file", or "pip not recognised internal...." ect.

i have tried "python3.4", "python.exe" , many others since not python. file name of numpy file downloaded "numpy-1.9.2+mkl-cp34-none-win_amd64.whl".

so can give me detailed tutorial of how use these, looks of things modules using these now. also, why did people stop using .exe files install these? easier!

python 3.4 comes pip included in package, should able start using pip after installing python 3.4. commands pip install <packagename> work if path pip included in path environment variable. if it's not, , you'd rather not edit environment variables, need provide full path. default location pip in python 3.4 in c:\python34\scripts\pip3.4.exe. if file exists there (it should), enter command c:\python34\scripts\pip3.4.exe install <numpy_whl_path>, <numpy_whl_path> full path numpy .whl file. example: c:\python34\scripts\pip3.4.exe install c:\users\mwinfield\downloads\numpy‑1.9.2+mkl‑cp34‑none‑win_amd64.whl.


Comments

Popular posts from this blog

Java 3D LWJGL collision -

spring - SubProtocolWebSocketHandler - No handlers -

methods - python can't use function in submodule -