기본 콘텐츠로 건너뛰기

[python] how to install python on ubuntu

$ sudo apt-get update ; sudo apt-get upgrade
$ wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz #python3.5.2 다운
$ tar xvf Python-3.5.2.tgz   # 압축풀기
cd Python-3.5.2              # 디렉토리 이동
./configure                   # makefile 생성
make                         #python코드 컴파일
$ sudo make install            # 설치

댓글