Python to install numpy, scipy, matplotlib and other whl packages, numpyscipy

Source: Internet
Author: User
Tags install matplotlib

Python to install numpy, scipy, matplotlib and other whl packages, numpyscipy

Python and PyCharm development environments have been installed recently, but problems have occurred when installing numpy, matplotlib, and other packages. Here we will summarize the installation methods on the windows platform.

Because the new version of exe file cannot be found, the installation of the whl format file is used. I installed python3.5.2 in advance, and the computer is 32-bit.

1. Install wheel first. In the cmd window, enter:

Pip install wheel

2. Download the Toolkit:

Numpy module: http://www.lfd.uci.edu /~ Gohlke/pythonlibs/# numpy

Scipy module: http://www.lfd.uci.edu /~ Gohlke/pythonlibs/# scipy

Matplotlib module: https://pypi.python.org/pypi/matplotlib

Pay attention to download the corresponding python version and windows version of the whl file, for example, I download is: matplotlib-2.0.0rc2-cp35-cp35m-win32.whl (md5), cp35 corresponds to python3.5 version, win32 corresponds to 32-bit computer.

3. Install the whl file. If you put the x. whl file in the root directory of drive D, enter the following in cmd:

Pip install d: \ x. whl

 

Note:

Do not rename the downloaded. whl file;
The installation sequence is exquisite. you can install numpy and scipy modules first and then matplotlib. Because each module is dependent on each other, you can refer to the installation requirements on the lfd.uci.edu website, for example, matplotlib installation requirements, package the dependencies first. I failed to install matplotlib at the beginning, and then checked the error message to learn that the dependent package pytz failed to automatically install. So I downloaded and installed the pytz package, and finally installed matplotlib.

 

    

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.