0% found this document useful (0 votes)
455 views

Python and PyCharm Installation PDF

This document provides 22 step-by-step instructions for downloading, installing, and configuring Python and PyCharm on a Windows system. It guides the user to download Python from python.org, run the installer, and verify the installation. It then guides the user to download PyCharm from jetbrains.com, run the installer, select options, and complete the setup process. Finally, it has the user create a new PyCharm project and Python file to test with a simple "Hello World" program and shows how to set the base interpreter in the project settings.

Uploaded by

slurryk
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
455 views

Python and PyCharm Installation PDF

This document provides 22 step-by-step instructions for downloading, installing, and configuring Python and PyCharm on a Windows system. It guides the user to download Python from python.org, run the installer, and verify the installation. It then guides the user to download PyCharm from jetbrains.com, run the installer, select options, and complete the setup process. Finally, it has the user create a new PyCharm project and Python file to test with a simple "Hello World" program and shows how to set the base interpreter in the project settings.

Uploaded by

slurryk
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

Step 1:

Enter the url https://www.python.org/downloads/ in the browser and click enter

Click on “Download Python 3.7.0”

Step 2:

After the file is downloaded, double click the executable (.exe) file

Step 3:

Click on “Run “
Step 4:

Click on “Install Now”

Step 5:

Click on “Close”… Setup is now complete


Step 6

Click on Start Menu and type CMD. Then choose the first option “cmd.exe”

Step 7

Type “where python” without quotations and click enter. If the installation is successful, the path where python Is
installed will be shown
Installing PyCharm
Step 1

Go to https://www.jetbrains.com/pycharm/download/#section=windows and press enter in your browser

Click on download under Community and the file will be downloaded

Step 2

After the file is downloaded, double click on the .exe file

Step 3

Click on Run
Step 4

Click Next

Step 5

Click Next
Step 6

Check the type of your Operating System and check the .py box. Check the “Download and install JRE x86
by JetBrains” and Click Next

Step 7

Click on Install
Step 8

Software is being installed

Step 9

Check the “Run PyCharm Community Edition” and click on Finish


Step 10

Do not Import Settings and click on OK

Step 11

Click on Skip Remaining and Set Defaults


Step 12

Click on “Create New Project”

Step 13

Give a name to your Project and click on Create


Step 14

Uncheck show tips on start-up and click on close

Step 15

Right click on your Project, click on new and then click on Python File
Step 16

Give a name to your file and click on OK

Step 17

Sample “Hello World” Program


Step 18

Before running the program, we should setup virtual environment and base interpreter for the python
program.

Press “CTRL+ALT+S” and then click on the settings icon on the top right corner

Step 19

Click on Add
Step 20

In the left hand menu choose “Virtual Environment” and on the right side you can either choose existing
environment or a new one. Make sure that the path is right for base interpreter click on OK. You can make
this interpreter available to all projects

Step 21

Click on Run from the top menu and then choose the first program
Step 22

Result of your program is displayed in the “Run” window below

PyCharm is now successfully installed!!!!

You might also like