Contents
Install PyCharm on Ubuntu
PyCharm is an intelligent and fully featured IDE for Python developed by JetBrains. It also provides support for Javascript, Typescript, and CSS etc. You can also extend PyCharm features by using plugins. By using PyCharm plugins you can also get support for frameworks like Django, Flask. We can also use PyCharm for other programming languages like HTML, SQL, Javascript, CSS and more. In this tutorial, you are going to learn how to install PyCharm on Ubuntu 18.04.
Prerequisites
Before you start to install PyCharm on Ubuntu 18.04. You must have the non-root user account on your system with sudo privileges.
Install Snappy Package Manager
Snappy provides better package management support for Ubuntu 18.04. It’s quick and easy to use. To install Snappy package manager type following command. If its already installed on the system skip to next step
NOTE: Ubuntu 18.04 may have already installed Snappy package manager.
sudo apt install snapd snapd-xdg-open
Install PyCharm
Now to download and installed PyCharm snap package run following command. It will take some time to download and install package.
sudo snap install pycharm-community --classic
After successfully downloading and installing the package you will get the following output.
pycharm-community 2018.2.4 from 'jetbrains' installed
Start PyCharm
After successful instalation to start PyCharm via terminal run following command.
pycharm-community
You can also start PyCharm from activities

You will get the following output after accepting the license and setting up the initial configuration.

Conclusion
You have successfully learned how to install PyCharm on Ubuntu 18.04. If you have any queries regarding this then please dont forget to comment below.
—————————————————————————————–

Install PyCharm on CentOS 7
PyCharm is an intelligent and fully featured IDE for Python developed by JetBrains. It also provides support for Javascript, Typescript, and CSS etc. You can also extend PyCharm features by using plugins. By using PyCharm plugins you can also get support for frameworks like Django, Flask. We can also use PyCharm for other programming languages like HTML, SQL, Javascript, CSS and more. In this tutorial, you are going to learn how to install PyCharm on CentOS 7.
Prerequisites
Before you start to install PyCharm on CentOS 7. You must have the non-root user account on your system with sudo privileges.
Install PyCharm
First we will download PyCharm using official PyCharm download page using wget command. At the time writing this tutorial the current latest version available is 2018.3.2
. You can check latest version for installation if you want.
sudo wget https://download-cf.jetbrains.com/python/pycharm-professional-2018.3.2.tar.gz
Now extract the downloaded package using following command.
tar -xvf pycharm-professional-2018.3.2.tar.gz
Navigate inside the extracted directory.
cd pycharm-professional-2018.3.2
Now to run PyCharm like normal programs you should create symbolic link using the following command.
sudo ln -s ./pycharm-community-2018.3.2/bin/pycharm.sh /usr/bin/pycharm
Start PyCharm
You can launch PyCharm using following command.
pycharm
On starting PyCharm first time you will be asked to import settings. If you have settings from older version then you can import or select “Do not import settings”.

You will get the following output after accepting the license and setting up the initial configuration.

Conclusion
You have successfully learned how to install PyCharm on CentOS 7. If you have any queries regarding this then please dont forget to comment below.