-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
24 lines (20 loc) · 793 Bytes
/
Copy pathsetup.sh
File metadata and controls
24 lines (20 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# Setup script for Radiation Physics Education Apps
# Run this after moving to Mac with uv installed
echo "🚀 Setting up Radiation Physics Education Apps with uv"
# Install dependencies
echo "📦 Installing dependencies..."
uv sync
# Make scripts executable
chmod +x run_apps.py
echo "✅ Setup complete!"
echo ""
echo "To run the applications:"
echo " uv run python run_apps.py # Interactive launcher"
echo " uv run radphysics # Direct script (when configured)"
echo " uv run streamlit run main.py # Main navigation page"
echo ""
echo "Individual apps:"
echo " uv run streamlit run apps/photoelectric/photoelectric_app.py"
echo " uv run streamlit run apps/compton_scattering/compton_app.py"
echo " uv run streamlit run apps/pair_production/pair_app.py"