Anaconda
아나콘다 3 설치
홈페이지에서 받아서 설치
.Do you wish the installer to initialize Anaconda3 in your /home/#####/.bashrc ? [yes|no] [no] >>> yes
yes로 대답한다.
bunzip2 명령어를 못 찾는 경우,
sudo apt-get install bzip2
명령어 활성. ~/.bashrc 최하단에 다음 내용 추가
source anaconda3/etc/profile.d/conda.sh
환경생성
conda create -n [환경이름]
환경 활성/비활성화
conda activate [환경이름]
conda deactivate [환경이름]
환경 목록
conda info --envs
환경 제거
conda remove -n [환경이름] --all
환경 복사본
conda create --name [새로운환경이름] --clone [복사대상환경이름]
0개의 댓글