PyCharm: Python IDE for Professional Developers

Today, Python has become a popular high-level programming language for general-purpose programming. It is easy to learn and it has clean syntax and indentation structure essentially making it easier for programmers with backgrounds in other languages to grasp Python pretty quickly, and beginners find it really simple.

An IDE (Integrated Development Environment) can make the difference between a good and bad programming experience and one of the useful IDEs for Python is Pycharm.

Pycharm is a powerful and cross-platform Python IDE which integrates all developments tools in one place. It is feature rich and comes in community (free and open source) as well as professional editions.

Pycharm Features

  • It’s highly customizable and pluggable.
  • It provides smart code completion.
  • Offers code inspections functionalities.
  • Has remarkable error highlighting and quick-fixes.
  • Ships in with automated code refactorings and rich navigation capabilities.
  • Has built-in developer tools such as integrated debugger and test runner; Python profiler; a built-in terminal; integration with major VCS and built-in database tools and much more.
  • Provides several web development tools and frameworks, specific template languages such as JavaScript, TypeScript, CoffeeScript, Node.js, HTML/CSS and more.
  • It also offers scientific tools including Matplotlib and NumPy plus lots more.

In this article, we will show you how to install PyCharm IDE Community (free and open source) edition in Linux systems.

How to Install PyCharm IDE in Linux

First go to the PyCharm download section and grab the latest stable version of PyCharm Community Edition or you can use following wget command to download it directly into terminal.

$ wget https://download.jetbrains.com/python/pycharm-community-2017.3.2.tar.gz
$ tar -xvf pycharm-community-2017.3.2.tar.gz
$ cd pycharm-community-2017.3.2/

To run pycharm like any other command, create a soft link from a directory (/usr/bin/ in this example) in your PATH environmental variable to the pycharm executable and run pycharm as follows.

$ sudo ln -s ./pycharm-community-2017.3.2/bin/pycharm.sh /usr/bin/pycharm
$ pycharm

Note: Pycharm is now available as a snap package. Users of Ubuntu 16.04 or later can install it from the command line:

$ sudo snap install [pycharm-professional|pycharm-community] --classic

Next, you will be asked to accept the Pycharm privacy policy agreement by clicking on “Accept” as shown in the screen shot below.

Pycharm Accept Agreement
Pycharm Accept Agreement

After that, you will view the pycharm welcome page.

Pycharm Welcome Window
Pycharm Welcome Window

Now create your first project; enter a name for it and click “Create”.

Create Project in Pycharm
Create Project in Pycharm
Pycharm Project
Pycharm Project

Pycharm Documentation: https://www.jetbrains.com/pycharm/documentation/

Pycharm is a well-developed IDE with all necessary Python programming tools and more, built for professional developers. Share your thoughts with us via the feedback form below.

Aaron Kili
Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

2 Comments

Leave a Reply
  1. Hello!

    I am trying to use pycharm. My laptop is a Del Inspiron 1420 with 2GB and Xubuntu 18.05. I followed the lines in this page. When I tryed to run it I got an error with java ( I did not have it installed).

    I looked into the pycharm.sh and saw there is not a jre directory, just a jre64 (I assumed is for a 64-bit computer, mine is 32-bits). So I installed java, after that tryed to run it agian and I got:

    OpenJDK Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 
    and will likely be removed in a future release.
    
    Start Failed: Failed to initialize graphics environment
    
    java.awt.AWTError: Assistive Technology not found: org.GNOME.Accessibility.AtkWrapper
    	at java.desktop/java.awt.Toolkit.newAWTError(Toolkit.java:472)
    	at java.desktop/java.awt.Toolkit.fallbackToLoadClassForAT(Toolkit.java:488)
    ..........................................
    	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:499)
    	at java.base/java.lang.Class.forName0(Native Method)
    	at java.base/java.lang.Class.forName(Class.java:374)
    	at java.desktop/java.awt.Toolkit.fallbackToLoadClassForAT(Toolkit.java:485)
    	... 32 more
    

    I really appreciated any help. I hoped you can help me, I am programming with python in Ubuntu.

    Bie

    Pablo

    Reply

Leave a Reply to Aaron Kili Cancel reply

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.