PyCharm's  tool is a code editor support for Python, JavaScript, popular scripting language, CSS and etc. Also can easily identify code completion, error detection shows automatically.

Its a Lightweight IDE for Python development only.

This post is describe about how to install in your Ubuntu, Debian, Linux Mint system.

Require Package:

Before install the PyCharm requires Oracle Java, If you did not installed execute below commands to Install 

sudo apt-get purge openjdk*

sudo add-apt-repository ppa:webupd8team/java

sudo apt-get update

sudo apt-get install oracle-java8-installer

Install : 

Download the package from the Link

Before installation install JDK package to

Go to /opt directory and download package using wget command and extract it.
 
cd /opt

wget http://download-cf.jetbrains.com/python/pycharm-community-4.0.4.tar.gz

tar -xf pycharm-community-4.0.4.tar.gz

cd pycharm-community-4.0.4

cd bin/

Execute pycharm package.
 
  ./pycharm.sh

Another method,

Also install another method is,
 
wget -q -O - http://archive.getdeb.net/getdeb-archive.key

sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu trusty-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'

sudo apt-get update

sudo apt-get install pycharm

Uninstall :

The below command uninstall Pycharm,
 
sudo apt-get remove pycharm