[Learn python from zero] 01. Install and configure python

Install Python

To develop Python, you first need to download and configure a Python interpreter.

Download Python

Visit Python official website: https://www.python.org/

Click the downloads button and select the system type (windows/Mac OS/Linux, etc.) in the drop-down box

Choose to download the latest version of Python

insert image description here

Install Python

  1. Double-click the downloaded Python installation package
  2. Check the Add Python 3.7 to PATH option in the lower left corner, and then select Install now to install Python immediately.
  3. The installation is complete
    insert image description here

Test whether the installation is successful

  1. Click the start button in the lower left corner of the computer, and enter cmd to enter the command line mode of windows.

  2. insert image description hereEnter Python in the command line, and the Python version is displayed correctly, which means that Python is installed Add Python 3.7 to PATHsuccessfully . configuration.
    insert image description here

Configure Python manually

Note: If the Add Python 3.7 to PATH option has been checked during the installation process, and no error is reported when entering the python command in the cmd command mode, then there is no need to manually configure Python.

  1. Right click on This PC --> select Properties
    insert image description here

  2. Select Advanced System Settings --> Environment Variables --> Find and double-click Path
    insert image description here

  3. Double-click Path, click New in the pop-up box, find the Python installation directory, and add the path to it
    insert image description here

  4. The newly added path C:\Users\chris\AppData\Local\Programs\Python\Python37 is the directory where the executable file Python.exe is located after Python is installed.
    insert image description here

Use of pip

pip is a modern, general-purpose Python package management tool. Provides the functions of searching, downloading, installing, and uninstalling Python packages, which is convenient for us to manage Python resource packages.

Install

When installing Python, it will automatically download and install pip.

configuration

In the windows command line, enter pip -Vto view the version of pip.
insert image description here

If you run pip -V on the command line, the following prompt appears:
insert image description here

It may be because the Add Python 3.7 to PATH option was not checked during the python installation process, and the pip environment variable needs to be manually configured.

  1. Right-click on this computer –> Environment Variables –> Find and double-click Path –> Click New in the pop-up window –> Find the pip installation directory and add the path to it.
    insert image description here

  2. The newly added path C:\Users\chris\AppData\Local\Programs\Python\Python37\Scripts is the directory where the executable file pip.exe is located after Python is installed.
    insert image description here

Manage Python packages with pip

  • pip install <包名>Install the specified package
  • pip uninstall <包名>remove the specified package
  • pip listshow installed packages
  • pip freezeDisplay the installed packages and display them in the specified format
  • pip install -r required.txtInstall the installation packages listed in the required.txt file

Modify pip download source

Running the pip install command will download the specified python package from the website, and the default is to download it from the https://files.pythonhosted.org/ website. This is a foreign website. When the network situation is not good, the download may fail. We can modify the source of pip's current software through commands.

Format:pip install 包名 -i 国内源地址

Example: pip install flask -i https://pypi.mirrors.ustc.edu.cn/simple/Download flask (a third-party web framework based on python) from the server of University of Science and Technology of China (ustc)

List of commonly used pip download sources in China:

Advanced case

[Python] Python realizes the word guessing game-challenge your intelligence and luck!

[python] Python tkinter library implements GUI program for weight unit converter

[python] Use Selenium to get (2023 Blog Star) entries

[python] Use Selenium and Chrome WebDriver to obtain article information in [Tencent Cloud Studio Practical Training Camp]

Use Tencent Cloud Cloud studio to realize scheduling Baidu AI to realize text recognition

[Fun with Python series [Xiaobai must see] Python multi-threaded crawler: download pictures of emoticon package websites

[Play with Python series] [Must-see for Xiaobai] Use Python to crawl historical data of Shuangseqiu and analyze it visually

[Play with python series] [Must-see for Xiaobai] Use Python crawler technology to obtain proxy IP and save it to a file

[Must-see for Xiaobai] Python image synthesis example using PIL library to realize the synthesis of multiple images by ranks and columns

[Xiaobai must see] Python crawler actual combat downloads pictures of goddesses in batches and saves them locally

[Xiaobai must see] Python word cloud generator detailed analysis and code implementation

[Xiaobai must see] Python crawls an example of NBA player data

[Must-see for Xiaobai] Sample code for crawling and saving Himalayan audio using Python

[Must-see for Xiaobai] Technical realization of using Python to download League of Legends skin pictures in batches

[Xiaobai must see] Python crawler data processing and visualization

[Must-see for Xiaobai] Python crawler program to easily obtain hero skin pictures of King of Glory

[Must-see for Xiaobai] Use Python to generate a personalized list Word document

[Must-see for Xiaobai] Python crawler combat: get pictures from Onmyoji website and save them automatically

Xiaobai must-see series of library management system - sample code for login and registration functions

100 Cases of Xiaobai's Actual Combat: A Complete and Simple Shuangseqiu Lottery Winning Judgment Program, Suitable for Xiaobai Getting Started

Geospatial data processing and visualization using geopandas and shapely (.shp)

Use selenium to crawl Maoyan movie list data

Detailed explanation of the principle and implementation of image enhancement algorithm Retinex

Getting Started Guide to Crawlers (8): Write weather data crawler programs for visual analysis

Introductory Guide to Crawlers (7): Using Selenium and BeautifulSoup to Crawl Douban Movie Top250 Example Explanation [Reptile Xiaobai must watch]

Getting Started Guide to Crawlers (6): Anti-crawlers and advanced skills: IP proxy, User-Agent disguise, Cookie bypass login verification and verification code identification tools

Introductory Guide to Crawlers (5): Distributed Crawlers and Concurrency Control [Implementation methods to improve crawling efficiency and request rationality control]

Getting started with crawlers (4): The best way to crawl dynamic web pages using Selenium and API

Getting Started Guide to Crawlers (3): Python network requests and common anti-crawler strategies

Getting started with crawlers (2): How to use regular expressions for data extraction and processing

Getting started with reptiles (1): Learn the basics and skills of reptiles

Application of Deep Learning Model in Image Recognition: CIFAR-10 Dataset Practice and Accuracy Analysis

Python object-oriented programming basics and sample code

MySQL database operation guide: learn how to use Python to add, delete, modify and query operations

Python file operation guide: encoding, reading, writing and exception handling

Use Python and Selenium to automate crawling#【Dragon Boat Festival Special Call for Papers】Explore the ultimate technology, and the future will be due to you"Zong" #Contributed articles

Python multi-thread and multi-process tutorial: comprehensive analysis, code cases and optimization skills

Selenium Automation Toolset - Complete Guide and Tutorials

Python web crawler basics advanced to actual combat tutorial

Python introductory tutorial: master the basic knowledge of for loop, while loop, string operation, file reading and writing and exception handling

Pandas data processing and analysis tutorial: from basics to actual combat

Detailed explanation of commonly used data types and related operations in Python

[Latest in 2023] Detailed Explanation of Six Major Schemes to Improve Index of Classification Model

Introductory Python programming basics and advanced skills, web development, data analysis, and machine learning and artificial intelligence

Graph prediction results with 4 regression methods: Vector Regression, Random Forest Regression, Linear Regression, K-Nearest Neighbors Regression

Guess you like

Origin blog.csdn.net/qq_33681891/article/details/132142759