pycharm 파일을 받으면 install-linux-tar.txt에 설치방법이 적혀있다.
PyCharm INSTALLATION INSTRUCTIONS =============================================================================== 1. Unpack the PyCharm distribution archive that you downloaded where you wish to install the program. We will refer to this location as your {installation home}. 2. To start the application, open a console, cd into "{installation home}/bin" and type: ./pycharm.sh This will initialize various configuration files in the configuration directory: ~/.config/JetBrains/PyCharmCE2022.1. 3. [OPTIONAL] Add "{installation home}/bin" to your PATH environment variable so that you can start PyCharm from any directory. 4. [OPTIONAL] To adjust the value of the JVM heap size, create a file pycharm.vmoptions (or pycharm64.vmoptions if using a 64-bit JDK) in the configuration directory and set the -Xms and -Xmx parameters. To see how to do this, you can reference the vmoptions file under "{installation home}/bin" as a model but do not modify it, add your options to the new file. [OPTIONAL] Change the location of the "config" and "system" directories ------------------------------------------------------------------------------ By default, PyCharm stores all your settings in the ~/.config/JetBrains/PyCharmCE2022.1 directory and uses ~/.local/share/JetBrains/PyCharmCE2022.1 as a data cache. To change the location of these directories: 1. Open a console and cd into ~/.config/JetBrains/PyCharmCE2022.1 2. Create a file idea.properties and set the idea.system.path and idea.config.path variables, for example: idea.system.path=~/custom/system idea.config.path=~/custom/config NOTE: Store the data cache ("system" directory) on a disk with at least 1 GB of free space. Enjoy! -PyCharm Development Team |
친절하신 개발팀분들에게 감사를.
저기에서 1번과 2번을 설정해 준다.
1) download - 직접 or terminal로 설치
1-1) 직접
파이참 파일 다운로드는 https://www.jetbrains.com/pycharm/download/#section=linux
여기에서 community 버전으로 받았다. 무료로 쓸 수 있는 버전이 community 버전,
tar로 압축되어 있는 파일을 클릭하고 위쪽에 풀기 눌러서 tar파일을 풀어주었다.
풀면 다음과 같이 bin 파일과 install 관련한 텍스트 파일이 있었다. 해당 텍스트 파일은 어떻게 설치하면 되는지 파이참 개발팀에서 쓴 글.
1-2) terminal 다운 코드
굳이 웹 상으로 들어가지 않고, command line 으로 다음과 같이 칠 수 있다.
# install
sudo snap install pycharm-community --classic
# 다운 받은 파일 위치로 이동
cd ~/Downloads
# 압축 풀기
tar -xzf pycharm-community-2022.1.3.tar.gz
2) 파일 이동
# 해당 파일로 이동
cd pycharm-community-2022.1.3
# bin 파일로 이동
cd bin
다음과 같이 파일 이동
3) 파이참 실행
# shell script permission #굳이...
chmod u+x pycharm.sh
# shell script 실행
sh pycharm.sh
여기에서 chmod ~ 이 부분은 굳이 할 필요는 없는 것 같다. 중요한 건 sh pycharm.sh 로 쉘 스크립트를 실행하면 파이참이 실행된다. 이렇게 해도 되고 아니면 개발팀에서 써준 글 대로 ./pycharm.sh 쳐도 된다
./pycharm.sh
체크박스 선택하고 Continue
다음과 같이 파이참이 열렸다. 이제 이걸 PATH에 등록해주어야 하는데
vim .bashrc에 등록해줘도 될 것 같긴한데 파이참 내에 해당 기능이 있었음.
4) PATH 추가
Tool - Create Desktop Entry 를 클릭하면 다음과 같이 뜬다.
체크 박스에 클릭하고 ok 클릭
암호 입력해서 등록하면 다음과 같이 즐겨찾기에서 pycharm 파일을 바로 볼 수 있다.
우분투에 파이참 설치 끝!
이제 멋진 코드를 작성해야지:)
'linux' 카테고리의 다른 글
ubuntu20.04) anaconda (base) 자동 경로 설정 변경. PATH (0) | 2022.07.30 |
---|---|
ubuntu20.04) Rstudio 설치하기 (0) | 2022.07.19 |
Ubuntu20.04) python3 - IDLE3 설치 및 파일 실행 (0) | 2022.06.29 |
ubuntu 20.04) tensorflow cpu only. GPU 없는 노트북. 텐서플로우 설치 (0) | 2022.06.22 |
ubuntu20.04 cpu only pytorch 설치하기. GPU없이 파이토치 설치완료 (2) | 2022.06.21 |