Anaconda를 활용한 Python 가상환경 설치

호두마리·2023년 2월 12일
0

ETC

목록 보기
2/2

가상환경 목록

conda env list

가상환경 생성

conda create -n test_env -c conda-forge python=3.11

가상환경 활성화

conda activate test_env

가상환경 라이브러리 설치

conda install tensorflow=3.10
conda install black numpy pandas orjson fastapi matplotlib
conda install ...

가상환경 삭제

conda env remove test_env
profile
자고싶당

0개의 댓글