Ubuntu에서 Python 3.9 버전을 설치하는 방법을 소개합니다.
- Apt를 이용하여 설치
- Source를 다운로드받아 설치
- Alternatives로 Python 버전 관리
1. Apt를 이용하여 설치
다음과 같은 명령어로 필요한 프로그램 설치합니다.
$ sudo apt update
$ sudo apt install software-properties-common
다음 명령어로 Repository를 등록합니다.
$ sudo add-apt-repository ppa:deadsnakes/ppa
다음 명령어로 Python 3.9를 설치합니다.
$ sudo apt install python3.9
다음 명령어로 python 3.9
가 설치된 경로를 확인할 수 있습니다.
$ which python3.9
/usr/bin/python3.9
$ python3.9 --version
Python 3.9.6
2. Source를 다운로드받아 설치
먼저 기본적인 프로그램들을 설치해야 합니다.
$ sudo apt update
$ sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev
wget으로 python 3.9
소스를 받고 빌드합니다.
$ wget https://www.python.org/ftp/python/3.9.1/Python-3.9.1.tgz
$ tar -xf Python-3.9.1.tgz
$ cd Python-3.9.1
$ ./configure --enable-optimizations
$ make -j 12
빌드 완료 후, 다음 명령어로 설치를 합니다.
$ sudo make altinstall
python 3.9
이 설치되었는지 확인합니다.
$ python3.9 --version
Python 3.9.6
3. Alternatives로 Python 버전 관리
alternatives을 사용하면 python의 버전 변경을 쉽게 할 수 있습니다.
예를 들어, python 3.9
를 사용하고 있다가 python 2.7
로 변경을 하고 싶을 때 alternatives라는 툴이 이것을 쉽게 하도록 도와줍니다.
먼저 alternatives에 python을 등록하기 위해 python 3.9
가 실제 어떤 path에 설치되었는지 확인합니다.
$ which python3.9
/usr/bin/python3.9
아래와 같은 명령어로 python 3.9
를 alternative를 등록할 수 있습니다.
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.9 3
update-alternatives: using /usr/bin/python3.9 to provide /usr/bin/python (python) in auto mode
alternative의 자세한 설정 방법은 Ubuntu에서 Python 버전을 변경하는 방법을 참고해주세요.
다음 명령어로 python의 기본 버전을 python 3.9
로 설정하였습니다.
$ sudo update-alternatives --config python
There are 3 choices for the alternative python (providing /usr/bin/python).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/python3.9 3 auto mode
1 /usr/bin/python2.7 1 manual mode
2 /usr/bin/python3.6 2 manual mode
3 /usr/bin/python3.9 3 manual mode
Press <enter> to keep the current choice[*], or type selection number: 3
버전을 확인해보면, python이 python 3.9
로 설정된 것을 확인할 수 있습니다.
$ python --version
Python 3.9.6
나중에 파이썬 버전 변경이 필요할 때, 아래 명령어를 사용하셔서 버전을 변경하시면 됩니다.
$ sudo update-alternatives --config python
참고
Loading script...
Related Posts
- Ubuntu/Linux - 특정 이름이 들어간 파일 모두 찾고 삭제하기
- Ubuntu/Linux - 특정 이름이 포함된 프로세스 모두 종료
- Ubuntu/Linux - 사용자 계정 이름 확인 (id, whoami)
- Ubuntu/Linux - E: unable to locate package 에러 해결
- Ubuntu 22.04/20.04 - Yarn 설치 방법
- Linux/Ubuntu - grep 명령어로 문자열 검색
- Linux/Ubuntu - 터미널에서 seq로 명령어 N회 반복
- Linux/Ubuntu - wc 명령어로 Line(줄) 개수 세기
- bash: pip: command not found 문제 해결 (Linux/Ubuntu)
- Ubuntu 22.04 - Swap 메모리 늘리기
- Linux - 파일이 수정된 날짜/시간 확인 방법
- Linux - 파일, 디렉토리 삭제 명령어(rm -rf, rmdir)
- 우분투 22.04 - deb 파일 설치하기
- Ubuntu 20.04 - OpenJDK 11 설치, 삭제
- Linux - ps 명령어로 실행 중인 프로세스(PID) 확인
- Ubuntu 20.04 - SSH 설치와 접속 방법
- Ubuntu에서 PPA 저장소 추가, 제거 방법
- Ubuntu 22.04 - Brave 브라우저 설치
- Ubuntu 22.04 - 프로스트와이어(FrostWire) 설치
- Ubuntu 22.04 - Remmina 설치 방법
- Ubuntu 22.04 - Rust 설치하기
- Ubuntu 22.04 - 텔레그램 설치하기
- Ubuntu - Deluge 토렌트 클라이언트 설치
- Ubuntu JDK 17 (OpenJDK) 설치, 삭제
- Ubuntu 20.04 스팀(Steam) 설치 방법
- Ubuntu에서 draw.io 설치하는 방법
- 우분투에 VMware 설치하기
- [Ubuntu] VMware에서 Windows 11 설치
- Vi/Vim에서 1줄 또는 여러줄 삭제 방법
- Vi/Vim에서 라인 번호 표시하 기
- 우분투에서 rar 압축, 압축 풀기
- Ubuntu에서 구글 드라이브 사용하기 (로컬 폴더에 마운트)
- [Ubuntu] apt-cache search, 설치 가능한 패키지 검색
- Ubuntu - DNS 캐시 삭제 방법
- Ubuntu에서 사용할 수 있는 Text Editor 소개