Install PyCharm

PyCharm is the most widely used integrated development environment (IDE) or development tool for Python development.

Integrated development environment (IDE) includes code editor, debugger, compiler, interpreter etc. and provides various functions such as auto-complete and search.


../_images/1_1_pycharm_sample1.jpg ../_images/1_1_pycharm_sample2.jpg

Follow this guide step by step to install PyCharm.


STEP 1. Download

Download the free Community version at JetBrains official website( Link )

../_images/1_1_pycharm_sample3.png

STEP 2. Install

Run the downloaded file.

../_images/1_1_pycharm_sample4.png

Choose the install location.

../_images/1_1_pycharm_sample5.png

Create desktop shortcut and create association for files with .py extension.

../_images/1_1_pycharm_sample6.png

Choose the Start Menu Folder (or enter a name for new folder) and click ‘Install’.

../_images/1_1_pycharm_sample7.png

The installation begins.

../_images/1_1_pycharm_sample8.png

Check the box for “Run PyCharm Community Edition” and finish installation.

../_images/1_1_pycharm_sample9.png

STEP 3. Settings

If there isn’t a particular setting to import, check the bottom box and click ‘OK’.

../_images/1_1_pycharm_sample10.png

Scroll to the end to read the policy and click ‘Accept’.

../_images/1_1_pycharm_sample11.png

Decide whether or not to send usage statistics to JetBrains.

../_images/1_1_pycharm_sample12.png

Set UI theme.

../_images/1_1_pycharm_sample13.png

STEP 4. Create project

Click ‘Create New Project’ for a new project.

../_images/1_1_pycharm_sample14.png

Enter the name for your project and click ‘Create’.

../_images/1_1_pycharm_sample15.png

STEP 5. Print ‘Hello, World!’

On startup, tip of the day will appear. Click ‘Close’.

../_images/1_1_pycharm_sample16.png

Right click on ‘Project’ -> New -> Choose ‘Python file’.

../_images/1_1_pycharm_sample17.png

Enter file name and click ‘OK’.

../_images/1_1_pycharm_sample18.png

Enter ‘print(‘Hello, World!’)’ in the code editor and press ‘Ctrl+Shift+F10’ to run. This will print the results as follows.

../_images/1_1_pycharm_sample19.png

If Python isn’t installed, the following error will appear.

For Python and PyQt5 installation, install Anaconda.

../_images/1_1_pycharm_sample20.png

Prev/Next