DataForge / install_deno.sh
ai-puppy
save
4be3026
raw
history blame contribute delete
413 Bytes
#!/bin/bash
echo "πŸ”§ Installing Deno for PyodideSandbox..."
# Install Deno
curl -fsSL https://deno.land/install.sh | sh
# Add Deno to PATH for the current session
export DENO_INSTALL="/home/user/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
# Verify installation
echo "βœ… Deno installed at: $(which deno)"
echo "βœ… Deno version: $(deno --version)"
echo "πŸš€ Starting Python application..."
python app.py