0% found this document useful (0 votes)
215 views7 pages

PyCharm IDE Installation Instructions

The document provides instructions for installing the PyCharm IDE on Windows. It outlines downloading the installer from the PyCharm website, selecting an installation directory, installing, and verifying the installation works by creating a new Python project called "Test", adding a print statement, and running it to display "Hello World".

Uploaded by

wasslife
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
215 views7 pages

PyCharm IDE Installation Instructions

The document provides instructions for installing the PyCharm IDE on Windows. It outlines downloading the installer from the PyCharm website, selecting an installation directory, installing, and verifying the installation works by creating a new Python project called "Test", adding a print statement, and running it to display "Hello World".

Uploaded by

wasslife
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

Programming in Python3 IACC - 2017 PyCharm IDE Installation

PyCharm IDE Installation Instructions

Windows :

1) Go to Official PyCharm Downloads page by following the URL below :

https://www.jetbrains.com/pycharm/download/#section=windows

Click Download under ‘Community’ to start download

2) Double click the installer (pycharm-community-2018.1.4.exe) to start PyCharm Community


EditionSetup.

Click ‘Next’

3) Select an installation directory or leave it to the default directory and click Next
Programming in Python3 IACC - 2017 PyCharm IDE Installation

4) The Next step is optional, if you know OS type select either 32 or 64 bit else click ‘Next’
Programming in Python3 IACC - 2017 PyCharm IDE Installation

5) Click Install to begin installation

6) Click finish to complete installation


Programming in Python3 IACC - 2017 PyCharm IDE Installation

Verifying Installation

1) Go to All Programs and open JetBrains PyCharms Community Edition

If this is the first time the IDE is being opened you would see the following window. Select Do
Not import settings and press OK.
Programming in Python3 IACC - 2017 PyCharm IDE Installation

Press OK

2) Click on ‘Create New Project’, this will create a new Python project within PyCharm

3) Specify the name of the project as ‘Test’ and hit create


Programming in Python3 IACC - 2017 PyCharm IDE Installation

4) Right Click on Test undr Projects panel on the left side of the screen, select New -> Python File

5) You will see a new tab test.py open up. Type the following in the tab :

print(‘Hello World!’)
Programming in Python3 IACC - 2017 PyCharm IDE Installation

6) On the top of the window goto Run and under the drop down click Run. A new window will
open, select ‘Test’ to run the code.

A new panel called Run will open on the bottom of the window and you would see ‘Hello World’
printed.

Congratulations! You have executed a Python statement in the PyCharm IDE

You might also like