Home > Article > Backend Development > How to install numpy module in python?
Steps to install numpy module in python:
1. Download the numpy installation package
Open the URL https://pypi .python.org/pypi/numpy, find the numpy version corresponding to the installed python version.
My python version is:
The corresponding numpy version to download is:
2 . Download numpy to the scripts folder in the python installation directory
3. Then execute the following command in cmd
pip3.6 install D:\java\python36\Scripts\numpy-1.13.3-cp36-none-win_amd64.whl
4. If you see the following prompt, the installation is successful
The above is the detailed content of How to install numpy module in python?. For more information, please follow other related articles on the PHP Chinese website!