728x90
How to Install python 3.7 on CentOS 7
Step 1 — Install Prerequisites
yum install gcc openssl-devel bzip2-devel libffi-devel
Step 2 — Download Python 3.x
cd /usr/local/src/
wget https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tgz
tar xfz Python-3.7.2.tgz
Step 3 — Install Python3.x
cd Python-3.7.2
./configure --enable-optimizations
make altinstall
Step 4 — Using Python 3.x
./python --version
$ ./python --version
Python 3.7.2
728x90
'리눅스' 카테고리의 다른 글
[draft] CentOS 7에서 BIND에 GeoIP 기능을 설정하여 사용하는 방법 (0) | 2022.11.24 |
---|---|
DNS 서버 설정 파일과 실행 파일을 백업하는 스크립트 (0) | 2022.11.24 |
[리눅스] bind rndc(rndc.conf) 설정 및 rndc 명령 (0) | 2022.11.23 |
우분투에서 BIND9를 설치하고 설정하는 방법 (0) | 2022.11.23 |
apt/apt-get command (0) | 2022.11.21 |