Anaconda3 > Anaconda Prompt 실행 가상환경 conda create -n torch_book python=3.9.0 가상환경 리스트 conda env list 가상환경 활성화 activate torch_book 가상환경 삭제 conda env remove -n torch_book 커널 설치 pip install ipykernel 가상환경에 커널 연결 python -m ipykernel install --user --name torch_book --display-name "torch_book" 파이토치 설치 conda install pytorch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 -c pytorch 주피터 노트북 설치 pip install ..