How to install NumPy for Python 3.6

前端 未结 6 1412
情深已故
情深已故 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:18

    Pip itself is not part of Python. However, since version 3.4 Python includes the ensurepip module that allows bootstrapping a pip installation. After calling

    python3.6 -m ensurepip
    

    you should be able to install numpy via pip.

提交回复
热议问题