manzo2792
@manzo2792 (まんぞ)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

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

1Answer

source は Bash の組み込みコマンドであり、 PowerShell では使えません。前回の質問でも wget を使っていたようですし、 Bash 向けの手順をご覧になっているのではないでしょうか。

PowerShell で bash コマンドを実行すると Bash のシェルに入れるので、そこで操作してください。

0Like

Your answer might help someone💌