Lubuntu Xenial PyCharm Installation
-
Download PyCharm Community Ed. for Lubuntu
Select the PyCharm Community Edition for Linux.
-
Double-Click on Archive Extract into /tmp
Or from Command Line:
tar xvzf ~/Downloads/pycharm-community*.tar.gz -C /tmp/
-
Relocating PyCharm
First, Set the SuperUser as owner:sudo su -c "chown -R root:root /tmp/pycharm*"
To Switch the PyCharm contents:
sudo mv /tmp/pycharm-community* /opt/pycharm-community
-
Making PyCharm Symlinks.
sudo su -c "ln -s /opt/pycharm-community/bin/pycharm.sh /usr/local/bin/pycharm"
sudo su -c "ln -s /opt/pycharm-community/bin/inspect.sh /usr/local/bin/inspect"
-
Finally, to Launch PyCharm Python IDE
From Shell:pycharm
Then choose Create Desktop Entry from the ‘configure‘ Menu to make a Launcher:
-
PyCharm Quick Start Hello-World Python
Contents