출처 : https://www.jetbrains.com/help/pycharm/installation-guide.html

 

Install PyCharm - Help | PyCharm

To create a desktop entry, do one of the following: On the Welcome screen, click Configure | Create Desktop EntryFrom the main menu, click Tools | Create Desktop Entry Install using snap packages For Ubuntu 16.04 and later, you can use snap packages to ins

www.jetbrains.com

블로그의 글보다는 만든 회사에서 제공하는 설치 방법이 최고겠쥬?

 

01. 설치

$ sudo snap install pycharm-community --classic

설치 완료 후 재시작을 하면 "pycharm-community" 명령어로 실행 가능

$ sudo add-apt-repository ppa:mystic-mirage/pycharm
$ sudo apt-get update
$ sudo apt-get install pycharm
너무 느림

 

02. 실행

$ pycharm-community

 

03. 삭제

$ sudo apt-get remove pycharm-community
$ sudo apt-get remove pycharm
$ sudo add-apt-repository --remove ppa:mystic-mirage/pycharm
이하 동문

1. Anaconda 다운로드

 

2. 명령어 입력

설치
$ bash [다운로드 받은 *.sh 파일]

계속 enter 누르다가

yes 입력

 

 

3. bashrc 실행

$ source ~/.bashrc

 

4. Anaconda 설치 확인

$ conda --version

conda: command not found 에러가 발생했을 경우

=> .bashrc 파일 수정

 

1. vi 열기

$ vi ~/.bashrc

2. 경로 추가

export PATH = ~/anaconda3/bin:$PATH

 

3. bashrc 실행

4. Anaconda 설치 확인

+ Recent posts