Conda_Miniconda 환경 변수 설정
echo 'export PATH="/opt/homebrew/Caskroom/miniconda/base/bin:$PATH"' >> ~/.zshrc
~/.zshrc
파일에 miniconda 환경 변수 설정
Please run the following to setup your shell:
conda init "$(basename "${SHELL}")"
or
conda init <SHELL_NAME>
~/.zshrc
파일에 아래 내용의 환경 변수 자동 생성
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/opt/homebrew/Caskroom/miniconda/base/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/opt/homebrew/Caskroom/miniconda/base/etc/profile.d/conda.sh" ]; then
. "/opt/homebrew/Caskroom/miniconda/base/etc/profile.d/conda.sh"
else
export PATH="/opt/homebrew/Caskroom/miniconda/base/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
Anaconda Version 확인
conda --version
- -V : --version : Show the conda version number and exit.
Anaconda update
conda update conda
conda update anaconda={특정버전}
Author And Source
이 문제에 관하여(Conda_Miniconda 환경 변수 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@zivary/CondaMiniconda-환경-변수-설정저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)