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