run a crontab job using an anaconda env
问题 I want to have a cron job execute a python script using an already existing anaconda python environment called my_env. The only thing I can think to do is have the cron job run a script called my_script.bash which in turn activates the env and then runs the python script. #!/bin/bash source activate my_env python ~/my_project/main.py Trying to execute this script from the command lines doesn't work: $ sh scripts/my_script.bash scripts/my_script.bash: 9: scripts/my_script.bash: source: not