Skip to content

Commit

Permalink
Update setup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
CursedPrograms authored Jan 23, 2024
1 parent e85f732 commit 7377f78
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 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 main Python script
echo "Running main.py..."
python main.py

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

0 comments on commit 7377f78

Please sign in to comment.