Skip to content

Instantly share code, notes, and snippets.

@markmals
Created June 7, 2025 16:17
Show Gist options
  • Save markmals/e756f544a336faaf66b56816339610a1 to your computer and use it in GitHub Desktop.
Save markmals/e756f544a336faaf66b56816339610a1 to your computer and use it in GitHub Desktop.
Set up Deno to work in OpenAI Codex Universal
# 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