This post is from a low-reputation account and contains an unverified outbound link. Be cautious before clicking external links.

환경설정 - ANACONDA 설치

sady(25)
Published in
#anaconda
Words
68
Reading
1 min
Listen
Play
7y

사용환경 / mac terminal(zsh)

  1. pyenv 를 통한 다운로드 - 버전관리가 용의하다고 하는데, 다운로드 시간이 오래 걸려서 포기.
    (pyenv 설치)
    brew install pyenv
    (환경설정 열기)
    vi ~/.zshrc
    (환경설정 추가)
    export PYENV_ROOT="$HOME/.pyenv"
    export PATH="$PYENV_ROOT/bin:$PATH"
    eval "$(pyenv init -)"
    (환경설정 적용)
    source ~/.zshrc

  2. 웹에서 다운로드 - 시간이 빠르다
    (웹페이지에서 다운로드 )
    https://www.anaconda.com/distribution/
    (환경설정 열기)
    #bash vi ~/.bash_profile
    #zsh vi ~/.zshrc
    (환경설정 추가)
    export PATH = 본인이 설치한 위치:$PATH
    (환경설정 적용)
    source ~/.zshrc

환경설정 - ANACONDA 설치 | Ecency