Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags more
Archives
Today
Total
관리 메뉴

JOOHUUN

파이썬 및 콘다 가상 환경 관련 명령어 본문

카테고리 없음

파이썬 및 콘다 가상 환경 관련 명령어

JOOHUUN 2022. 5. 28. 15:26

- python -m venv qwe : qwe라는 가상환경 생성

- qwe\Scripts\activate : qwe 환경 집입

git bash 가성환경 진입 source qwer\scripts\activate 

- deactivate : 탈출

- pip freeze > qwe.txt : pip 목록이 담긴 qwe.txt 파일 생성

- pip install -r qwe.txt : qwe.txt파일에 있는 pip설치

 

-----------------------------경-----------------계------------------선------------------------------

 

- conda create -n qwe python=3.9 

- conda activate qwe 

- conda deactivate 

- conda env list

- conda list

- conda env remove -n qwe

- python -m pip install --upgrade pip : 파이썬 명령어 업그레이드

 

 

Comments