How to Install PyCharm in Ubuntu
Last Updated :
23 Jul, 2025
PyCharm is one of the most popular Python-IDE used for performing scripting and executing Python programs. It supports a wide range of frameworks and has a lot of useful features like Code Completion and inspection, debugging process, and support for various programming frameworks such as Flask and Django. In this article, we will see how to install PyCharm in Ubuntu.
Downloading and Installing PyCharm on Ubuntu
PyCharm can be installed inside the Ubuntu by using two methods:
- Using tar.gz
- Using Ubuntu Software Store
- Using snap command
Method 1: Install PyCharm Using tar.gz
Step 1: Download Pycharm Archive
Go to the official website of PyCharm jetbrains.com and scroll down and click on download PyCharm Community Edition.
Pychram pageStep 2: Move and Extract File
Go to folder where you have downloaded PyCharm usually the Download Folder
cd ~/Download
Step 3: Unzip the File
Use the following command to decompress and unzip the tar file
tar –xzf pycharm-community-2023.x.tar.gz
extracting pycharmStep 4: Install PyCharm
Open the folder and open Pycharm by entering the following command
cd pycharm-community-2023.x/bin/pycharm.sh
PycharmMethod 2: Install PyCharm on Ubuntu Using Ubuntu Software Store
Step 1: Open Ubuntu Software Center and Click on Search and Type Pycharm and Click on Pycharm Community
Pycharm SearchStep 2: Click on Install
Pycharm InstallStep 3: Pycharm will now install
Installing PycharmStep 4: After it is installed go to menu and search Pycharm and open it
Searching in menuStep 5: Pycharm will now open
Pycharm windowMethod 3: Install PyCharm using snap command
Step 1 : Open Terminal using the following key combination
Ctrl + Alt + T
Open Terminal using Ctrl + Alt + T
Step 2 : Run the following snap command (snap is a universal package for distributing software, that is developed by Canonical, the parent company of Ubuntu) and enter your password
sudo snap install pycharm-community --classic
Run Snap command to install PyCharm
Step 3 : After this go to the application menu and search for PyCharm and open it
Search and Open PyCharm
Step 4 : Start using PyCharm
Start Using PyCharm
Similar Reads
How to install Python in Ubuntu? This guide will walk you through the steps to install Python on Ubuntu. Python 3 is widely used and usually comes pre-installed on most Ubuntu versions. However, if it's not available or you want to install a specific version, follow any of the methods below.Note: Python 3 is typically pre-installed
4 min read
How to install PIP in Ubuntu? PIP is the most widely used package management system for Python, allowing you to install and manage Python libraries and packages easily. If you're developing in Python on Ubuntu, having PIP installed is essential for downloading and managing the dependencies of your projects. In this guide, weâll
3 min read
How to Install XGBoost in Pycharm? This article will teach you how to install xgboost in pycharm in simple steps with snapshots. There are tons of articles already on Google, but they didn't explain each and every step clearly. After reading it, you'll know how to install xgboost with a only couple of steps and you will also learn pr
5 min read
How to install PyCharm in Windows? PyCharm is the Python development IDE developed by JetBrains. They have developed professional and free community versions of this tool. The first professional version of the tool is paid and available as a trial for 30 days. However, in this article, we will look into the process of downloading the
2 min read
How To Install Seaborn In Pycharm? Seaborn is a popular Python data visualization library that is based on the Matplotlib library. You can create informative designs and attractive statistical graphics. Data analysts and scientists can more easily display their data with Seaborn high-level interface. They can easily construct differe
4 min read
How to install NumPy in PyCharm? NumPy stands for Numerical Python. It is a powerful library used for numerical and matrix computations. It forms the foundation of many other popular Python libraries like pandas, scikit-learn, TensorFlow and more. There are multiple ways to install the NumPy package in PyCharm, depending on user pr
2 min read