Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1 KB

TOOLS_INSTALLATION.md

File metadata and controls

55 lines (36 loc) · 1 KB

Tools Installation

asdf

$ brew install asdf
$ echo -e "\n. $(brew --prefix asdf)/libexec/asdf.sh" >> ${ZDOTDIR:-~}/.zshrc

https://asdf-vm.com/

For Ubuntu, please follow the instructions below to install.

https://asdf-vm.com/guide/getting-started.html

Node.js

$ asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
$ asdf install nodejs 20.5.0
$ asdf global nodejs 20.5.0
$ asdf reshim
$ node -v

pnpm

$ corepack enable
$ asdf reshim
$ pnpm -v

Docker

Mac

Please follow the instructions below for installation.

Docker Desktop for Mac

https://docs.docker.com/desktop/install/mac-install/

Ubuntu

Please follow the instructions below for installation.

Additionally, execute the following steps to use it without sudo:

https://qiita.com/katoyu_try1/items/1bdaaad9f64af86bbfb7