Created
June 7, 2025 16:17
-
-
Save markmals/e756f544a336faaf66b56816339610a1 to your computer and use it in GitHub Desktop.
Set up Deno to work in OpenAI Codex Universal
This file contains hidden or 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
# Deno for Codex Universal: https://github.com/openai/codex-universal | |
set -euo pipefail | |
apt-get update | |
update-ca-certificates | |
LATEST=$(curl -fsSL https://dl.deno.land/release-latest.txt) | |
curl -fsSL "https://dl.deno.land/release/${LATEST}/deno-x86_64-unknown-linux-gnu.zip" -o /tmp/deno.zip | |
mkdir -p "${HOME}/.deno/bin" | |
unzip /tmp/deno.zip -d "${HOME}/.deno/bin" && rm /tmp/deno.zip | |
echo 'export DENO_INSTALL="$HOME/.deno"' >> ~/.bashrc | |
echo 'export PATH="$HOME/.deno/bin:$PATH"' >> ~/.bashrc | |
echo 'export DENO_TLS_CA_STORE=system' >> ~/.bashrc | |
export PATH="$HOME/.deno/bin:$PATH" | |
deno --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment