You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
310 B
Bash

4 weeks ago
#!/bin/bash
# Change to the directory where your virtual environment is located
cd /Users/poni/lorenzo-final/
# Activate the virtual environment
source ./bin/activate
# Optional: Run a Python script or command within the virtual environment
python app.py
# Keep the virtual environment active
exec "$SHELL"