Linux
Ubuntu 18.04 - Anaconda 설치
흰곰곰
2019. 10. 9. 21:49
1. Download
https://www.anaconda.com/distribution/#download-section2. 권한 설정 및 설치
chmod +x Anaconda3-2019.07-Linux-x86_64.sh
./Anaconda3-2019.07-Linux-x86_64.sh
3. zsh쉘이라면 ( vim ~/.zshrc 추가 )
xxxxxxxxxx
export PATH=$HOME/anaconda3/bin:$PATH
xxxxxxxxxx
source ~/.zshrc
4. 가상환경 생성
xxxxxxxxxx
conda create -n python36_serving python=3.6 --y
5. 가상환경 접속
xxxxxxxxxx
source activate python36_serving
6. 가상환경 정보 확인
xxxxxxxxxx
conda info --envs
conda env list
7. 가상환경 삭제
xxxxxxxxxx
conda remove -n python36_serving --all
8. 가상환경 패키지 설치 리스트
xxxxxxxxxx
conda list