
가상환경 목록
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