Pycharm download and installation tutorial

Foreword:

​ PyCharm is a Python IDE (Integrated Development Environment, integrated development environment)

​ PyCharm has the functions that general IDEs have, such as debugging, syntax highlighting, project management, code jumping, smart prompts, auto-completion, unit testing, version control

Pycharm official website https://www.jetbrains.com/pycharm/
  1. After entering the website, we will see the following interface: just click a Download

insert image description here

  1. As shown in the figure below, select according to the operating system of your computer. For the windows system, select the area in the red circle in the figure

professional means the professional version, and community means the community version. It is recommended to install the community version because it is free to use.
insert image description here

  1. After finding the downloaded .exe file, double-click to run the installation package, and click Next
    insert image description here
  2. Select the installation path and click Next
    insert image description here
  3. Check the required environment, and then select Next
    insert image description here
    insert image description here
  4. Click Finish and reboot later
    insert image description here
  5. Double-click the Pycharm icon on the desktop, check Agree, and click Continue
    insert image description here
    insert image description here
  6. Click Projects on the left, and then click New Project
    insert image description here
  7. Recommended for newcomers: use an existing Python interpreter
    insert image description here
  8. After entering, there will be a tutorial prompt, click Close
    insert image description here
  9. Right-click to find Run, click to run the py file, if there is Hi~ o( ̄▽ ̄ )ブPyCharm, it means that the Python environment configuration is successful
    insert image description here
  10. Click File in the upper left corner, or right-click the Python code path, and click New to find Python File

Create a Python file
insert image description here

Guess you like

Origin blog.csdn.net/weixin_49237144/article/details/124918253