Detailed graphic and text explanation of installing pip under windows

Y2J
Release: 2017-05-16 13:36:15
Original
1459 people have browsed it

This article hopes to provide a fool-like tutorial that will enable readers to successfully install Python and pip. Friends who need it can refer to

This article hopes to provide a fool-like tutorial that will enable readers to successfully install Python and pip.

The first step is to install Python. The version chosen by the blogger is the latest version 3.4.2. Python installation under windows is generally installed through software installation packages rather than command lines, so we must first download the latest Python installation package from the official Python homepage. The download address is: www.python.org/downloads/

After the download is completed, keep clicking Next and it is OK. After the installation is complete, open the console and enter "Python". We can see the following effect:

The reason is very simple, because the python.exe file is in the Python directory Next, we haven't set the environment variables yet. So we need to add environment variables manually: Right-click My Computer -> Properties -> Click Advanced System Settings -> Click Environment Variables -> Click PATH -> Add us at the end Python installation path -> Click OK. Using a picture to represent it is:

The problem that needs to be paid attention to in this process is that when adding the PATH path, a semicolon must be added at the end. Now we enter "Python" in the browser again, and we can directly enter and exit commands on the console:

The second step is to install pip. We also need to download it from the official website of Python. The download address is: pypi.python.org/pypi/pip#downloads:

 

After the download is completed , extract it to a folder, use the CMD console to enter the decompression directory, enter:

python setup.py install
Copy after login

After installation, we directly enter pip on the command line, it will also show that 'pip' is not an internal command, nor is it runnable. program of. Because we haven't added environment variables yet.

According to the method of adding environment variables introduced before, we add at the end of PATH:

C:\Python34\Scripts;
Copy after login

Now we have fully installed pip:

The third step is to install some Python packages, such as the Tornado web framework:

[Related recommendations]

1. Special recommendation: "php Programmer Toolbox" V0.1 version download

2. Python free video tutorial

3. Python basic introductory tutorial

The above is the detailed content of Detailed graphic and text explanation of installing pip under windows. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!