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
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/
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
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
Update for Java9. Java8 would not install Change the Require Package section to sudo apt-get purge openjdk* sudo add-apt-repository ppa:webupd9team/java sudo apt-get update sudo apt-get install oracle-java9-installer
Good tutorial
Good tutorial