Installation of PyCharm

Last Updated : 12 Jan, 2026

PyCharm is a widely used Python IDE from JetBrains that makes coding easier with features like smart code suggestions, debugging tools, and project management. It comes in a free Community edition and a paid Professional edition.

Installation of PyCharm in Windows

Step 1: Download PyCharm

  • Go to the JetBrains PyCharm download page
  • Choose either the Community edition (free) or the Professional edition (paid).
  • Download the installer according to your preference.

m1
Pycharm Community

Step 2: Run the Installer

  • Locate the downloaded installer file and double-click it to run.
  • Follow the on-screen instructions.

m2

Step 3: Choose Installation Location

Select the folder where you want to install PyCharm.

m3

Step 4: Select Installation Options

You can select the following options according to your preference:

  • Create Desktop Shortcut - adds a shortcut on your desktop.
  • Add PyCharm to PATH - allows you to run PyCharm from the command line.
  • Associate .py files with PyCharm - makes PyCharm the default editor for Python files.

m4

Choose folder name where your project will be saved as default.

m5

Now it will download the PyCharm.

m6

Step 5: Complete Installation

  • Accept the license agreement and continue.
  • PyCharm will be installed.

m8

Step 6: Launch PyCharm

Once installed, launch PyCharm either from the Start menu or the desktop shortcut.

m9

Installation of PyCharm in Linux

PyCharm can be installed on Linux using Snap packages.

Step 1: Install PyCharm

Open your terminal and run the following command for the Professional edition:

sudo snap install pycharm-professional --classic

Step 2: Launch PyCharm

After installation, run the following command in the terminal to start PyCharm:

pycharm-professional

Comment