conda create -n 가상환경명 python=버전입력
conda info --envs

conda activate dx_env

conda install jupyter notebook pandas
python -m ipykernel install --user --name 가상환경명 --display-name "가상환경명"

jupyter notebook
conda create -n 가상환경복사명 -clone 기존가상환경명
conda info --envs

가상환경이 활성화된 상태에서
conda env export > 가상환경명.yaml

conda deactivate # base 환경으로 돌아오기
conda env remove -n 가상환경명

conda env create -f 가상환경명.yaml

..신기하구만

