![](https://velog.velcdn.com/images/hsedmr/post/1a1b2b59-a881-4c55-bc67-e079d8465bb5/image.png)
가상환경 목록
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