1. wsl2 에 아나콘다 설치

1.1. anaconda 홈페이지에서 linux 버전으로 설치

wget {download 주소}

1.2. sh 실행

sh ./Anaconda3-2021.11-Linux-x86_64.sh

1.3. shell 수정

<aside> 💡 경로에서 본인의 계정에 맞게 작성한다.

</aside>

# ~/.zshrc

export PATH=/home/sia/anaconda3/bin:$PATH

# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/sia/anaconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
    eval "$__conda_setup"
else
    if [ -f "/home/sia/anaconda3/etc/profile.d/conda.sh" ]; then
        . "/home/sia/anaconda3/etc/profile.d/conda.sh"
    else
        export PATH="/home/sia/anaconda3/bin:$PATH"
    fi
fi
unset __conda_setup
# <<< conda initialize <<<

변경 후

source ~/.zshrc

1.3. conda 버전 확인

conda --version

1.4. window gui 환경에서 사용하기

https://www.how2shout.com/how-to/install-anaconda-wsl-windows-10-ubuntu-linux-app.html

1.4.1. MobaXterm 설치