How to install NumPy for Python 3.6

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

    As long as binary packages (so-called 'wheels') for 3.6 have not been released to PyPi yet, you can resort to unofficial (but working) ones available at http://www.lfd.uci.edu/~gohlke/pythonlibs/. Download the file and install it like this:

    pip install C:\path\to\numpy‑1.11.3+mkl‑cp36‑cp36m‑win_amd64.whl
    

提交回复
热议问题