How to install NumPy for Python 3.6

前端 未结 6 1413
情深已故
情深已故 2020-12-16 22:31

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

6条回答
  •  醉酒成梦
    2020-12-16 23:01

    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.

提交回复
热议问题