PyCharm을 우분투 14.04설치 하는 방법


https://launchpad.net/~mystic-mirage/+archive/ubuntu/pycharm


There’s a PPA repository for Ubuntu based users that contains both professional (30-day free trial) and community version of PyCharm packages. So far, Ubuntu 15.04, Ubuntu 14.04, Ubuntu 12.04 and their derivatives are supported.


1. To add the PPA, open terminal from the Dash, Launcher, or via Ctrl+Alt+T shortcut keys. When it opens, run command:


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


2. After adding the PPA, update system package cache and install the IDE via Synaptic Package Manager. Or just run below commands one by one in terminal:


sudo apt-get update

sudo apt-get install pycharm


You may replace last command via sudo apt-get install pycharm-community to install the community version which is free.


3. How to run


pycharm-community


4. Remove Pyharm


# for community edtion

sudo apt-get remove pycharm-community


# for professional version

sudo apt-get remove pycharm


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


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



+ Recent posts