How To Install Pycharm On Linux - IbsterTech


Note: Make sure you watch the video below, to install pycharm without any problems!

About Pycharm

PyCharm is an integrated development environment used for programming in Python.
It provides code analysis, a graphical debugger, an integrated unit tester, integration with version control systems, and supports web development with Django. PyCharm is developed by the Czech company JetBrains. Wikipedia

Make Sure Your System Is UpTo Date:

sudo apt update -y && sudo apt upgrade -y

Installation of essential dependencies:

sudo apt install snapd && sudo snap install core

Setting Up Snap:

sudo systemctl restart snapd && sudo systemctl enable --now snapd apparmor

Pycharm Installation Options

Pycharm Community Edition

sudo snap install pycharm-community --classic

Pycharm Professional Edition

sudo snap install pycharm-professional --classic

Pycharm Educational Edition

sudo snap install pycharm-educational --classic

Uninstalling Pycharm - How To Uninstall Pycharm From You Linux System!

For whatever reason you want uninstall Pycharm we got you covered!

Firstly remove the “/opt/Pycharm” directory:

sudo rm -R /opt/Pycharm

Removing the Pycharm server configuration file “Pycharm-server.conf”:

sudo rm -f /etc/Pycharm-server.conf

Remove the Pycharm configuration file “Pycharm.conf” that is utilized for configuring the database:

sudo rm -f /etc/Pycharm.conf

Finally, remove the “/etc/init.d/Pycharm-server” directory that assists in starting Pycharm service at system boot:

sudo rm -f /etc/init.d/Pycharm-server

You can also remove the dependencies that you installed whilst installing Pycharm:

sudo apt remove python3-pip wget python3-dev python3-venv python3-wheel libxml2-dev libpq-dev libjpeg8-dev liblcms2-dev libxslt1-dev zlib1g-dev libsasl2-dev libldap2-dev build-essential git libssl-dev libffi-dev libmysqlclient-dev libjpeg-dev libblas-dev libatlas-base-dev postgresql -y