python3.7 버전 설치 방법 with wget tgz & configure
[ 작업환경 ]
Centos 7.5
Python3.7
1. 설치 파일 다운로드
$ cd /usr/src
$ wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz
/usr/src 위치에 Python-3.7.4.tgz 다운로드
2. 압축 풀기
$ tar xvf Python-3.7.4.tgz
3. Python-3.7.4 설치 진행
$ ./configure --enable-optimizations
시간이 다소 소요될 수 있습니다.
4. 기존의 /usr/bin/python 보호하며 추가설치 진행
$ make altinstall
시간이 다소 소요될 수 있습니다.
5. 정상 설치 여부 확인
본 위치에 설치된 파일들 중 python 파일이 python-3.7.4 임을 확인
$ ./python -V
6. python3 커맨드로 해당 python 불러오도록 설정
$ cd /usr/bin
$ ln -s /usr/src/Python-3.7.4/python python3
$ python3 -V
정상적으로 설치된 python-3.7.4 불러오는지 확인하여 이상없으면 완료입니다.
'Development > Python' 카테고리의 다른 글
[Python][pymysql] 전국 지하철역 기본 정보 DB에 insert 실습 (0) | 2020.03.05 |
---|---|
[Solved][Python] ModuleNotFoundError: No module named 'PIL' (0) | 2020.03.01 |
[Solved][Python] MySQLdb._exceptions.ProgrammingError: not enough arguments for format string (0) | 2020.01.06 |
[Python][Pillow] 이미지 처리 관련 패키지 설치 및 활용 예시 (0) | 2020.01.01 |
[Solved][Python] OSError: cannot write mode RGBA as JPEG (0) | 2020.01.01 |