Python and Pycharm installation and uninstallation tutorial

Introduction

Python interpreter

Generally speaking, Python refers to a cross-platform programming language, and installing Python here refers to installing the Python interpreter. Only by installing the Python interpreter can your computer understand the Python language.

Pycharm

Pycharm is a Python IDE (Integrated Development Environment) with a set of high-efficiency tools to help Python development.

Pycharm is divided into professional edition (Professional, fee) and community edition (community, free). You only need python basic functions to download the community version. If you want to unlock more functions, download the professional version.
ps: Students can apply for free authorization

download

Python-3.9.0

  1. Link: https://www.python.org/downloads/release/python-390/ .
  2. Move the mouse to the bottom of the page.

    My computer is Windows 10, 64-bit. Download the .exe version and click the mark to download

pycharm-professional-2020.2.3

  1. Link: https://www.jetbrains.com/pycharm/download/#section=windows .
  2. Download (I downloaded the professional version)

installation

Python installation

  1. Right-click and select [Run as administrator]

  2. In order to prevent the space of C drive from being occupied, select [Customize installation],
    remember to check Add PATH below , otherwise you have to configure it manually to reduce unnecessary trouble.

  3. Click【next】

  4. Select the first item and click, [Browse] select the folder you want to install

  5. After waiting for a while, click [Close] to complete the installation

  6. Check if the installation is successful

    • [Win+R] shortcut key to open the running interface, enter cmd, call up the command line
    • Enter "python", and if Python 3.9.0 appears, the installation is successful
    • Enter print("hello") to verify the function function
    • exit() function to exit the Python environmentInsert picture description here

Pycharm installation

  1. Right click and select [Run as administrator]

  2. Modify the installation path, click [Next]

  3. Check all, click [Next]

  4. Waiting for installation

  5. Restart the computer and make sure to save other workspace files before clicking [Finish]

  6. Double-click the desktop icon, start Pycharm, check the agreement, click [Continue]

  7. Click【Don't Send】

Data sharing: Collect some of your data anonymously and feed it back to JetBrains to help improve their products. These data include the features and plug-ins used, hardware and software configurations, statistical information about file types, the number of files per project, etc. Does not include personal data or any sensitive information, such as source code, file names, etc.

  1. Log in to the system, I applied for a free student authorization, so I use my account password to log in directly

  2. Activated successfully

Uninstall

Python uninstall

  1. Find the Python installation directory and double-click the .exe file
  2. Click [Uninstall] to uninstall

Pycharm uninstall

Find the bin folder in the Pycharm installation directory, find [Uninstall.exe], double-click to uninstall

Guess you like

Origin blog.csdn.net/weixin_45640009/article/details/109296452