CentOS 7 Python 설치


  1. tgz 파일 다운
wget https://www.python.org/ftp/python/Python-3.6.8.tgz
  1. 압축 해제
tar -xvf Python-3.6.8.tgz
  1. 파이썬 설치
cd Python-3.6.8
./configure
make altinstall
  1. 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 해제


  1. OpenSSL 설치
yum -y install openssl openssl-devel
  1. Setup 경로 확인
find / -name Setup
  1. 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
  1. 재 설정 & 설치
./configure
make altinstall
  1. pip 패키지 설치
pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org 패키지명