Sunday, December 11, 2016

How to install PyCharm 2016.3 in Ubuntu 16.10, 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.3 comes with these features:
  •     Better Django support
  •     Improved Python console
  •     Full support for Python 3.6
  •     Enhanced version control integration
  •     A better variable explorer
  •     Upgrades to coverage and profiling tools
  •     And much more, see the what’s new page

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 179 MB.

$ sudo apt-get install pycharm-community

 To install the professional edition of PyCharm, use the command below. It will download data of around 232 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