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
'Computer Science > Python' 카테고리의 다른 글
Python 파라메터 앞에 *와 **의 의미 (*args, **kwargs) (0) | 2017.02.02 |
---|---|
Python 2 와 Python 3의 차이점 (0) | 2017.01.31 |
(기록 보관용) IPython 및 Jupyter를 Window에 설치 및 설정 (1) | 2016.03.25 |
Data Science를 위한 Python package 꾸러미들 (0) | 2015.12.07 |
Python 설치법, 환경설정, IDE 설정 (0) | 2015.11.17 |