728x90
# Linux Ubuntu 환경에서 Python 설치하기
sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.7
1~4번째 줄까지 update 및 upgrade를 해준 후, python 3.7 설치
# Python 설치가 잘 되었는지 확인
python3.7 --version
내 버전은 3.7.9이다.
# 별칭(alias) 지정
alias python=python3.7
alias pip=pip3
사용하기 쉽도록 별칭을 지정해준다.
728x90
'📁 etc' 카테고리의 다른 글
#1. Ubuntu server, SSH server 설치하기 | putty 초기 설정 (3) | 2021.02.13 |
---|---|
[Linux Ubuntu] git 설치 / 초기 설정 (0) | 2020.05.06 |