Created
August 23, 2024 15:09
-
-
Save nakasyou/a3a7b81d0a484faaf5bc6c918312ae14 to your computer and use it in GitHub Desktop.
setup deno ChatGPT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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