가상환경 만들 파이썬 파일 하나를 만들어준다.
mkdir python
python3 -m venv 가상환경이름
python -m venv green
파이썬 가상환경 실행
source /python/가상환경이름/bin/activate
source /python/green/bin/activate
파이썬 버전을 확인하면 가상환경 내부에서의 파이썬 버전을 확인할 수 있다.
파이썬 가상환경을 종료하려면 아래의 명령어를 입력해준다.
deactivate
** 가상환경 내부에 설치된 Python 라이브러리는 가상 환경 외부에 설치되지 않는다.
반응형
'프로그래밍 언어 > Python' 카테고리의 다른 글
[python] Please use the NLTK Downloader to obtain the resource (0) | 2021.11.26 |
---|---|
파이썬에서 dataframe to postgresql 저장하기 (0) | 2021.11.21 |
[python] postgresql insert into list 형 (0) | 2021.11.17 |
python 실행 시 매개변수 인자 전달하기 - sys argv (0) | 2021.11.17 |
No module named 'mysql' (0) | 2021.11.16 |