
가상환경 설정 (anaconda)
·
알쓸신잡
# 가상환경 리스트 확인 conda info --envs # 가상환경 삭제 conda remove --name 가상환경이름 --all # 파이썬 설치 가능 버전 확인 conda search python # 가상환경 생성하기 conda create --name 가상환경 python=3.7.12 # 가상환경에서 주피터 설치 pip install jupyter notebook # 주피터노트북이랑 가상환경이랑 연결하기 python -m ipykernel install --user --name 가상환경 --display-name 커널명 # 주피터에서 커널 삭제 jupyter kernelspec uninstall 커널명 # tensorflow gpu버전 설치 pip install tensorflow-gpu=2.6...