Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Python: Running Python script inside a shell - different behaviour from crontab than

Options
  • 14-05-2021 10:22am
    #1
    Registered Users Posts: 5,553 ✭✭✭


    Solaris environment. This script runs fine when I run directly but crontab does not do anything in it

    19 * * * *   python3 usr/src/utils/CE/ce_common_utils/ce_env_utils.py
    

    Im not getting the difference between crontabs environment and bash's. Anything obvious to check/correct?


Comments

  • Registered Users Posts: 6,149 ✭✭✭Talisman


    Crontab requires absolute paths. You will need to provide the full path for both the python executable and the script you want to execute.


  • Registered Users Posts: 5,553 ✭✭✭veryangryman


    Got it, needed to set PYTHONPATH

    Thanks for all answers/attempts


Advertisement