Back to articles list Articles
4 minutes read

How to Install the PyCharm IDE (Windows and Ubuntu)

This tutorial will show you how to install the PyCharm IDE on your own computer–whether you have Windows or Ubuntu.

To start developing with the PyCharm IDE, you need to download and install it on your computer's operating system. PyCharm is an editor developed by the JetBrains company. As of today, it is the most popular IDE used by Python developers. Knowing this, JetBrains delivers PyCharm in three versions:

  • Professional (full-featured IDE),
  • Community (lightweight IDE, not full-featured), and
  • Educational (community IDE with added education features).

The Professional edition is a paid edition, but you can test it with a free trial.

The Community edition is free and open-source, and it is available on Windows, Linux, and Mac. JetBrains also provides PyCharm Educational—a special free and open source edition with additional education features.

In this article, we focus on the community edition, which is free and contains enough features to help make writing code easier.

Installation Process on Windows

The first step is to download the executable file from the website of the project and run it.

Installation Process on Windows

Begin the installation process by clicking the Next button.

You can either choose the folder for the installation location yourself or leave the default path.

Installation Process on Windows

In the next step you can change various installation options and then confirm them by clicking the Next button.

Installation Process on Windows

Now the Start Menu folder can be changed or you can leave it as the default.

Installation Process on Windows

After these pre-installation steps, click the Install button to start the installation process.

Installation Process on Windows Installation Process on Windows

When you click the Finish button, you will see an icon like this on the desktop:

Installation Process on Windows

Click this icon to run the PyCharm IDE.

When the Complete Installation window appears, click OK.

Installation Process on Windows

In the Customize PyCharm window you can set user interface themes or skip it by clicking Skip Remaining and Set Default button.

Installation Process on Windows

In the Welcome window choose the Create New Project option to create your first project.

Installation Process on Windows

In the New Project window create a folder for your new project. In this window you can also set other options.

Installation Process on Windows

Click the Create button to approve all the settings and create the project.

Installation Process on Windows
Installation Process on Windows

Voila! Your PyCharm editor is ready to use!

Installation Process on Ubuntu

I will demonstrate the installation process on Linux using Ubuntu. There are multiple ways to install PyCharm IDE on Ubuntu. The recommended way is to use a snap tool. Snap is a program in Linux that allows you to install an application easily by using snap packages, which are available in the Ubuntu Software Center.

Open the Terminal and write the following command:

sudo snap install pycharm-community --classic

The installation process then starts.

Installation Process on Ubuntu

The last step is running the program. Write the following command:

pycharm-community

The Complete Installation window then appears. Click OK to go to the next step.

Installation Process on Ubuntu

In the Privacy Policy window check the "I confirm" checkbox and click the Continue button.

Installation Process on Ubuntu

Next, decide if you would like to send anonymous data about software usage.

Installation Process on Ubuntu

In the Customize PyCharm window you can change the UI theme or leave it as the default by clicking the Skip Remaining and Set Defaults button.

Installation Process on Ubuntu

In the Welcome window click the Create New Project item.

Installation Process on Ubuntu

In the New Project window type in the Location box the path for the project file. You can also change other settings, like choosing an interpreter that reads and executes code.

Installation Process on Ubuntu Installation Process on Ubuntu

Voila! Your customized PyCharm editor is ready to use!

Wrap Up

In this article, I showed you step-by-step how to install the PyCharm IDE on Windows and Ubuntu. Now you can start exploring it and developing your own Python projects. I hope you'll have fun! Stay tuned for my next article which will be an overview of the most useful PyCharm features for beginners. You can learn why PyCharm is fun, how to run scripts using it, how it can help you in writing your code, and more!