Skip to content

Instantly share code, notes, and snippets.

@nakasyou
Created August 23, 2024 15:09
Show Gist options
  • Save nakasyou/a3a7b81d0a484faaf5bc6c918312ae14 to your computer and use it in GitHub Desktop.
Save nakasyou/a3a7b81d0a484faaf5bc6c918312ae14 to your computer and use it in GitHub Desktop.
setup deno ChatGPT
#!/bin/bash
# Denoのインストール
curl -fsSL https://deno.land/x/install/install.sh | sh
# .bashrcまたは.zshrcにパスを追加
if [ -n "$ZSH_VERSION" ]; then
echo 'export DENO_INSTALL="$HOME/.deno"' >> ~/.zshrc
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
elif [ -n "$BASH_VERSION" ]; then
echo 'export DENO_INSTALL="$HOME/.deno"' >> ~/.bashrc
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
fi
# Denoのバージョン確認
deno --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment