[Python] 파이썬 개발환경 설정하기

cdwde·2021년 4월 30일
0
post-custom-banner

1. python extension 설치하기

2. 가상환경 만들기

  • pip 업그레이드 하기
python -m pip install --upgrade pip
  • 가상환경 만들기
python -m venv <가상환경_이름>
  • 가상환경 활성화
source <가상환경_이름>/Scripts/activate

3. 인터프리터 선택하기

  • F1 눌러서 Python: Select Interpreter 들어가기
  • 만든 가상환경 선택하기
post-custom-banner

0개의 댓글