Friday, August 26, 2016

How to install PyCharm 2016.2.1 in Ubuntu 16.04

    PyCharm is an IDE for Python development and has been considered as one of the best Python IDE by the experts. The IDE comes in professional and community edition. The community edition is free of cost, but professional edition has more features.



PyCharm 2016.2.1 features
  • Intelligent Code Editor
  • Smart Code Navigation
  • Fast and Safe Refactorings
  • Debugging, Testing and Profiling
  • VCS, Deployment and Remote Development
  • Database tools
  • Python Web frameworks
  • JavaScript & HTML
  • Live Edit
  • IPython Notebook integration
  • Interactive Python console
  • Support for scientific stack
 See announcement for full details

Installation instructions: 
 
We can add this PPA to Ubuntu Operating  Systems and install PyCharm with few easy commands.

Open terminal and insert command line...

$ sudo add-apt-repository ppa:mystic-mirage/pycharm
$ sudo apt-get update

To install the community edition of PyCharm, use the command below. It will download data of around 178 MB.

$ sudo apt-get install pycharm-community


 To install the professional edition of PyCharm, use the command below. It will download data of around 220 MB.

$ sudo apt-get install pycharm


Remove PyCharm

To uninstall PyCharm installed by the above described method, use the command below to uninstall the community edition of PyCharm:

$ sudo apt-get remove pycharm-community

To remove the professional version, use the command below:

$ sudo apt-get remove pycharm

 Afterward, use the command below to remove the PPA from the sources list:

$ sudo add-apt-repository --remove ppa:mystic-mirage/pycharm






No comments:

Post a Comment