Skip to content
On this page

2020-09-25

Title
2020-09-25
Category
2020
Tags
Aliases
2020-09-25
Created
3 years ago
Updated
last year

Python 가상 환경 설치

가상 환경 생성

bash
python3 -m venv .venv
python3 -m venv .venv

가상 환경 활성화

bash
source .venv/bin/activate
source .venv/bin/activate

확인하기

bash
which python
which python

참고자료

파이썬에서 venv로 가상 환경 사용하기

Released under the MIT License.