https://python-an.tistory.com/3
https://python-an.tistory.com/5
위 블로그 글을 참고했다.
: 독립적인 개발 환경
conda create -n 가상환경_이름 python=파이썬_버전(3.7..)
#뒤에 -y 추가하면 자동으로 yes 명령 입력됨
conda deactivate
conda list
conda env list
conda activate 가상환경_이름
pip install ipykernel
이때, kernel 이름은 jupyter에서 출력되는 이름
python -m ipykernel install --user --name 가상환경_이름 --display-name 커널_이름
jupyter kernelspec uninstall 커널_이름
conda remove --name 가상환경_이름 --all
큰 도움이 되었습니다, 감사합니다.