Spaces:
Running
Running
File size: 413 Bytes
4be3026 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/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 |