Skip to content
Advertisement

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.

JavaScript

Trying to execute this script from the command lines doesn’t work:

JavaScript

What do I need to do to make sure the proper environment is activated. Its ok to explain it to me like I’m 5.

Advertisement

Answer

Don’t call sh but bash. source is a bash command.

JavaScript

Or just

JavaScript

since you added the bash shebang.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement