1. PyCharm Community 다운로드https://www.jetbrains.com/pycharm/download/#section=linux 2. 다운로드된 파일 압축해제# tar xvf pycharm-community-2018.2.4.tar.gz 3. 압축해제된 폴더 내 bin 폴더의 pycharm.sh 실행# ./pycharm.sh 4. Pycharm 설치 및 실행1) Complete Installation설정 추가가 없으면 [OK] 2) JetBrains Privacy Policy마지막까지 읽어 보고 [Accept] 3) Data Sharing[Don't send] 4) Customize PyCharm - Set UI theme선호하는 UI 테마 선택 후 [Next: Launcher Scri..
1. yum repository 추가# yum install -y https://centos7.iuscommunity.org/ius-release.rpm 2. python 3.6 확인# yum search python36 3. python 3.6 설치# yum install -y python36u python36u-libs python36u-devel python36u-pip 4. python 3.6 설치 확인# python3.6 -V 5. python 3.6 설치 장소 확인# which python3.6 6. Alias 설정# ln -s /bin/python3.6 /bin/python3# unlink /bin/python# ln -s /bin/python3 /bin/python # ln -s /bin/..