Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
CursedPrograms committed Jan 23, 2024
1 parent 3857a7e commit bfd71ea
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash

# This is a setup script for the Python project

echo "Setting up the Python environment..."

# Install dependencies
if command -v pip &> /dev/null; then
echo "Installing Python dependencies..."
pip install -r requirements.txt
else
echo "Error: pip not found. Please install Python and pip first."
exit 1
fi

# Run the app Python script
echo "Running app.py..."
python app.py

echo "Setup complete! You're ready to start working on your Python project."

0 comments on commit bfd71ea

Please sign in to comment.