wsl2でjupyter notebook
Invoke-WebRequest -Uri https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh -OutFile Anaconda3-2020.11-Linux-x86_64.sh
#anaconda3をinstallできました。
#pathをとおすため
以下を実行
$ echo "export PATH=~/anaconda3/bin:\$PATH" >> ~/.bashrc
#ここは大丈夫みたい
$ source ~/.bashrc
ここで
The term source is not recognized
#が出ます。
#どうしてでしょうか
0