I have several python apps. To run these apps, I must 1st execute the virtual environment by issuing the following command:
source venv/bin/activate
I need to run these files using a cronjob (on Unix).
How can I get the a BASH shell script to execute a python app and make it run in its virtual environment?
Thanks