CentOS Stream 9にDenoをインストールする
環境
CentOS Stream release 9
操作方法
1.Denoをインポートします
$ curl -fsSL https://deno.land/x/install/install.sh | sh ######################################################################## 100.0% Archive: /home/arte/.deno/bin/deno.zip inflating: /home/arte/.deno/bin/deno Deno was installed successfully to /home/arte/.deno/bin/deno Manually add the directory to your $HOME/.bashrc (or similar) export DENO_INSTALL="/home/arte/.deno" export PATH="$DENO_INSTALL/bin:$PATH" Run '/home/arte/.deno/bin/deno --help' to get started Stuck? Join our Discord https://discord.gg/deno
2.PATHを通します
$ nano ~/.bash_profile
以下の内容を記述します
export DENO_INSTALL="/home/arte/.deno" export PATH="$DENO_INSTALL/bin:$PATH"
設定を反映します
$ source ~/.bashrc
3.バージョンを確認します
$ deno --version deno 1.26.1 (release, x86_64-unknown-linux-gnu) v8 10.7.193.3 typescript 4.8.3
4.動作確認
$ cd .deno $ deno run https://deno.land/std/examples/welcome.ts Download ? https://deno.land/std/examples/welcome.ts Warning Implicitly using latest version (0.159.0) for https://deno.land/std/examples/welcome.ts Welcome to Deno!
ファイルを作成します
$ nano test.ts
以下の内容を記述します
console.log('Hello World deno study');
結果
Hello World deno study