Skip to content

Commit

Permalink
WindowsでのGoとasdfインストール時の書き換え先を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
Pugma committed Jun 8, 2024
1 parent a93254d commit e026d68
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/chapter1/section1/0_setup-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ VSCode は拡張機能により様々な言語でのプログラミングをラ
sudo apt install tar git
wget https://go.dev/dl/go1.22.3.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.22.3.linux-amd64.tar.gz
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bash_profile
source ~/.bash_profile
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.profile
source ~/.profile
```

ここまでで、以下のコマンドを実行して
Expand Down Expand Up @@ -113,10 +113,10 @@ asdf とは、一つのプログラムの複数のバージョンを PC 内で

``` bash
sudo apt install git
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.11.3
echo '. $HOME/.asdf/asdf.sh' >> ~/.bashrc
echo '. $HOME/.asdf/completions/asdf.bash' >> ~/.bashrc
source ~/.bashrc
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.14.0
echo '. $HOME/.asdf/asdf.sh' >> ~/.rc
echo '. $HOME/.asdf/completions/asdf.bash' >> ~/.rc
source ~/.rc
```

## Node.jsの導入
Expand Down

0 comments on commit e026d68

Please sign in to comment.