CentOS 7 Python 설치
- tgz 파일 다운
wget https://www.python.org/ftp/python/Python-3.6.8.tgz
- 압축 해제
tar -xvf Python-3.6.8.tgz
- 파이썬 설치
cd Python-3.6.8
./configure
make altinstall
- alias 등록
cd /
find . -name python3.6
vi ~/.bashrc
alias python='/usr/local/bin/python3.6'
alias pip='/usr/local/bin/pip3.6'
source ~/.bashrc
SSL 해제
- OpenSSL 설치
yum -y install openssl openssl-devel
- Setup 경로 확인
find / -name Setup
- Setup 주석해제
vi `Setup 경로`
# _socket soketmodule.c
#SSL=/usr/local/ssl
#_ssl _ssl.c \
# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
# -L$(SSL)/lib -lssl -lcrypto
- 재 설정 & 설치
./configure
make altinstall
- pip 패키지 설치
pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org 패키지명