아나콘다 가상환경 만들기
작성 완료
- 가상환경 목록 확인 : conda env list
- 가상환경 간단한 명령어 : conda env
- 가상환경에서 커널 확인 : jupyter kernelspec list
- 가상환경에서 커널 삭제 : jupyter kernelspec uninstall unwanted-kernel
1. conda create -n 가상환경이름 python=3.8 $\longrightarrow$ 가상환경 생성
2. conda activate 가상환경이름 $\longrightarrow$ 가상환경 활성화
3. conda install -c conda-forge r-essentials=4.0 $\longrightarrow$ R 4.0 버전 설치
4. conda install -c conda-forge jupyterlab $\longrightarrow$ 주피터랩 설치
5. R $\longrightarrow$ R 환경진입
6. install.packages("IRkernel")
7. library(IRkernel)
8. IRkernel::installspec()
9. q()
10. jupyter lab $\longrightarrow$ 주피터랩 실행