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
'Linux' 카테고리의 다른 글
Ubuntu 18.04 - Windows 원격 사용하기 (0) | 2019.10.11 |
---|---|
Ubuntu 18.04 - 한글 키보드 셋팅 (0) | 2019.10.11 |
Ubuntu 18.04 - libSM.so.6 문제 해결법 (0) | 2019.10.11 |
Ubuntu 18.04 - git 셋팅 (0) | 2019.10.09 |
ubuntu 18.04 - oh my zsh 설치 (0) | 2019.10.09 |