How to Install PyCharm on Ubuntu
What is PyCharm?
PyCharm is an Integrated Development Environment (or IDE) for the Python programming language. It is a cross-platform development environment that is compatible with Windows, macOS, and Linux. It provides a tool that integrates code analysis, graphical debugging, unit testing, and an integrated terminal that supports development on remote hosts and virtual machines.
JetBrains created PyCharm based on the IntelliJ IDEA platform. There are two main versions of PyCharm.
- The PyCharm Community Edition: This development version is used without the framework options and other necessary features for writing Enterprise solutions.
- The PyCharm Professional Edition: This version is used to develop software for large projects where frameworks and additional libraries are needed. This version contains support for Scientific and Python development and supports HTML, JS, and SQL.
For successful developers, it is crucial to have excellent tools that lessen their workload and save time. Additionally, PyCharm utilizes various plugins and extensions, written by both IntelliJ IDEA and other third-party contributors to increase functionality. The Professional Edition has a free trial period during which users can familiarize themselves with it and its use or the open-source Community Edition, which allows for continued free usage.
System Requirements
Requirement | Minimum | Recommended |
RAM | 4 GB of RAM | 8 GB RAM |
Disk | 2.5 GB/1 GB caches | 5 GB SSD |
Monitor | 1024x768 | 1920×1080 |
OS | Windows 8 > macOS 10.13 > Linux | 64-bit OS |
GUI | Linux Gnome, KDE, or Unity DE | *GUI is required |
Java | You do not need to install to run PyCharm because JetBrains Runtime is bundled with the IDE (based on JRE 11) | |
Python | Python 2.7 Python 3.5+ |
Update
We begin the installation process by updating our server packages.
root@host:~# apt-get update -y && apt-get upgrade -y
Installation Methods
The default installation process recommended by JetBrains utilizes its Toolbox application to install PyCharm. For brevity, we have condensed the installation using a single terminal command noted below.
Using the Toolbox App
The JetBrains Toolbox App is the primary tool needed to install PyCharm. It is used to install, maintain, update, rollback versions if needed, and also remove the tool. This app keeps a list of our projects to open any local project quickly in the selected IDE using the correct version. To download and install the Toolbox App from the JetBrains web page, we will run the following command.
root@host:~# curl -L https://raw.githubusercontent.com/nagygergo/jetbrains-toolbox-install/master/jetbrains-toolbox.sh | bash && sh /opt/jetbrains-toolbox/jetbrains-toolbox.sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1502 100 1502 0 0 3122 0 --:--:-- --:--:-- --:--:-- 3122
Installing Jetbrains Toolbox
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 977 100 977 0 0 2026 0 --:--:-- --:--:-- --:--:-- 2022
https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.18.7455.tar.gz
Downloading Toolbox files
--2020-10-28 12:25:14-- https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.18.7455.tar.gz
Resolving download.jetbrains.com (download.jetbrains.com)... 52.50.241.213, 54.77.218.77, 205.251.196.29, ...
Connecting to download.jetbrains.com (download.jetbrains.com)|52.50.241.213|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.18.7455.tar.gz [following]
--2020-10-28 12:25:14-- https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.18.7455.tar.gz
Resolving download-cf.jetbrains.com (download-cf.jetbrains.com)... 52.84.23.20, 52.84.23.39, 52.84.23.26, ...
Connecting to download-cf.jetbrains.com (download-cf.jetbrains.com)|52.84.23.20|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 93224317 (89M) [binary/octet-stream]
Saving to: ‘/root/jetbrains-toolbox-1.18.7455.tar.gz’
/root/jetbrains-toolbox-1.18. 100%[=================================================>] 88.91M 5.24MB/s in 17s
2020-10-28 12:25:32 (5.23 MB/s) - ‘/root/jetbrains-toolbox-1.18.7455.tar.gz’ saved [93224317/93224317]
Download complete!
Installing to /opt/jetbrains-toolbox
Done.
This action finalizes the install of the PyCharm toolbox locally on our system. Now, we need to select the PyCharm product type and the version we want to install. Run the jetbrains-toolbox binary file from the /opt/jetbrains-toolbox/ directory, to run the Toolbox application. Next, we select the product type and version to install. After implementing the Toolbox application, it will add the Toolbox App icon to the main menu automatically.
Standalone installation
Install Using Snap
For later versions of Ubuntu, we can use a snap package to install PyCharm. PyCharm is shared in two main channels. The stable channel and the Edge channel. To set up the latest stable release of PyCharm, run the following command:
snap install pycharm-community --classic
Install Using .tar Archive
If snap packages are not available, we can download the installation file and then unpack the pycharm-*.tar.gz file to a folder of our choosing (assuming our the folder does not support file execution).
To install PyCharm in this directory, we use the following command:
wget https://download.jetbrains.com/python/pycharm-community-2020.2.3.tar.gz
tar xzf pycharm-*.tar.gz -C /opt/
We can verify the downloaded archive's integrity using the SHA checksum noted on the PyCharm download page.
Now, cd into the /opt/pycharm-*/bin subdirectory.
cd /opt/pycharm-*/bin
Next, run the pycharm.sh in the bin subdirectory.
sh pycharm.sh
A few more steps are required to complete the installation, customize your instance, and start working within the IDE.
Configuration
Once PyCharm is installed, we can configure the environment in two areas: the project level and the global level.
Environment Settings
The global settings apply to all projects within a specific installation, or version, of PyCharm. These settings include the IDE's appearance, the type of notification settings, the plugins, debugging settings, and code completion options. To configure our IDE, select File >> Settings. We can also press Ctrl+Alt+S or click on the Settings/Preferences button located on the toolbar.
Settings that are NOT marked with the project icon in the Settings/Preferences dialog box are global configurations. These parameters apply to all active projects within the current version of PyCharm installed.
Global settings are noted within the Settings/Preferences dialog box.
Restore IDE settings
When we restore a default IDE configuration, PyCharm will back up our setup to a chosen directory. We can always restore our settings from this backup location.
To back up our settings and chose the default to restore information, from the main menu, select File >> Manage IDE Settings >> Restore Default Settings. Alternatively, we can press the Shift button twice and then type in Restore default settings.
A popup similar to the one above will prompt us to confirm that we want to restore the default settings. Click the Restore and Restart button, and the IDE will then be restarted with the default setup.
When PyCharm restores our default IDE settings, it makes a backup directory with our configuration in this folder:
~/.config/JetBrains/PyCharm2020.3-backup
Apply IDE Settings
Next, we can apply those IDE settings using a backup from the main menu options in the main PyCharm interface. Select File >> Manage IDE Settings >> Import Settings. When the dialog box opens, select the chosen path of the backup directory and then click Open. PyCharm will then show us a confirmation popup.
Select Config Directory
We can also choose the configuration directory from a different PyCharm version or a .zip file. This assumes it includes the previously exported settings, apart from the backup configuration directory. Now, click the Restart button to apply the backup's restored settings and then restart the IDE.
Bonus
Lastly, as a bonus, we can also open our GitHub, GitLab, or Bitbucket projects into our PyCharm IDE with a single click using a Google Chrome extension or Firefox Add-on extensions. GitHub Settings: File >> Settings/Preferences >> Version Control >> GitHub. The required plugins for Git and >GitHub are bundled and enabled by default in PyCharm. Additionally, we can integrate our GitHub repositories into PyCharm. This option lets us push and pull our work to GitHub!
Conclusion
PyCharm is an excellent choice for working in a stable, multi-functional IDE. Its benefits include a multitude of plugins and other enhancements which extend its capabilities in multiple ways.
We pride ourselves on being The Most Helpful Humans In Hosting™!
Our Support Teams are filled with experienced Linux technicians and talented system administrators who have intimate knowledge of multiple web hosting technologies, especially those discussed in this article.
Should you have any questions regarding this information, we are always available to answer any inquiries with issues related to this article, 24 hours a day, 7 days a week 365 days a year.
If you are a Fully Managed VPS server, Cloud Dedicated, VMWare Private Cloud, Private Parent server, Managed Cloud Servers, or a Dedicated server owner and you are uncomfortable with performing any of the steps outlined, we can be reached via phone at @800.580.4985, a chat or support ticket to assisting you with this process.
Related Articles:
- ChatGPT Integration — How to Create a Plugin for ChatGPT
- Stable Diffusion AI Image Generator (SDXL) — Using the Web UI
- How to Install VMware Tools on Ubuntu: Step-by-Step Guide
- How to Install WordPress on Linux (AlmaLinux)
- What is CentOS? Everything You Need to Know
- Virtual Desktop Environment — Configuring Kasm Workspaces

About the Author: David Singer
I am a g33k, Linux blogger, developer, student, and former Tech Writer for Liquidweb.com. My passion for all things tech drives my hunt for all the coolz. I often need a vacation after I get back from vacation....
Our Sales and Support teams are available 24 hours by phone or e-mail to assist.
Latest Articles
ChatGPT Integration — How to Create a Plugin for ChatGPT
Read ArticleWhat is CentOS? Everything You Need to Know
Read ArticleWhat is CentOS? Everything You Need to Know
Read ArticleRedis as Cache: How It Works and Why You Should Use It
Read ArticleRefer-a-Friend Program for Website Hosting: Get $100 for Each Friend!
Read Article