僕はShellスクリプトでDenoを手に入れた
2021/11/17
Denoのバージョンを最新にしようとしたら、Denoなんでない!って怒られた
$ brew upgrade deno
Error: deno not installed
そうか、HomebrewじゃなくてShellスクリプトで入れたのか
忘れないようにここに記録しておく
そもそも何でインストールしたか確認できる方法とかってあるのかな
インストール
$ curl -fsSL https://deno.land/x/install/install.sh | sh
$ deno --version
deno 1.16.1 (release, x86_64-apple-darwin)
v8 9.7.106.2
typescript 4.4.2
バージョンを指定してインストール
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.0.0
バージョンアップ
$ deno upgrade
Looking up latest version
Found latest version 1.16.1
Checking https://github.com/denoland/deno/releases/download/v1.16.1/deno-x86_64-apple-darwin.zip
28.6 MiB / 28.6 MiB (100.0%)
Deno is upgrading to version 1.16.1
Archive: /var/folders/pp/gt4jlrmj7cgg0xrdggtspylh0000gn/T/.tmpyleuc4/deno.zip
inflating: deno
Upgraded successfully
バージョンを指定してバージョンアップ
$ deno upgrade --version 1.0.0
バージョンダウンもできる