Skip to content

Commit

Permalink
Update setup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
CursedPrograms committed Jan 23, 2024
1 parent e4d123d commit f1d0d61
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -1,20 +1 @@
#!/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."
python main.py

0 comments on commit f1d0d61

Please sign in to comment.