kkamagi's story

IT, 정보보안, 포렌식, 일상 공유

Programming

Ubuntu 18.04 Python 3.8.0 Install / 3.9.0 소스 설치 추가(11.27)

까마기 2020. 3. 12. 18:01
반응형

Ubuntu18.04에 Python 3.8.0 설치하기

 

https://linuxize.com/post/how-to-install-python-3-8-on-ubuntu-18-04/

 

How to Install Python 3.8 on Ubuntu 18.04

In this tutorial we'll cover two different ways to install Python 3.8 on Ubuntu 18.04. The first option is to install the deb package from the deadsnakes PPA, and the second one is by building from the source code.

linuxize.com

 

위 사이트를 참고하여 진행하였다.

 

* 설치환경

AWS EC2 Instance(Ubuntu 18.04)

 

* 설치 진행 (root 사용자로 접근한 상태에서 진행)

# apt update

# apt install software-properties-common

# add-apt-repository ppa:deadsnakes/ppa

중간에 ENTER

# apt install python3.8

 

 

# python3.8 --version

 

소스 설치의 경우 위 참고 사이트를 통해서 확인이 가능하다.

 

 

------------------------------------------------------------------------------------------------------------------

 

소스 설치하기

명령어 history

 

 

* 설치 완료 및 확인

반응형

'Programming' 카테고리의 다른 글

Jupyter lab 설치하기  (0) 2020.07.29
pycharm 설치  (0) 2020.07.17
python tor 네트워크 크롤링  (0) 2020.03.12
git pull 시 id/pw 인증 비활성화 하기  (0) 2020.02.03
Websocket / pusher - slanger 설치 및 세팅 (1/2)  (0) 2020.01.23