WSL2 ubuntu 설치 후 python setting

YoungHyo Choi·2021년 6월 18일
0

Python setting

목록 보기
3/3

python3.6 설치 및 venv setting
현재 ubuntu20.04의 경우 python 기본 버전이 3.8

  • python3.6 설치
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.6
  • python venv 설치
sudo apt install python3-pip # pip 설치
sudo pip install python3-venv # python3(python3.8) venv 설치
sudo pip install python3.6-venv # python3.6용 venv 설치
  • python3.6 -m venv [venv_name]
profile
golang과 elasticsearch를 좋아하는 3년차 백엔드 엔지니어입니다.

0개의 댓글