Forums

no such Python interpreter

Keep getting this error when i try to schedule a daily task /usr/bin/env python3: no such Python interpreter I tried all solutions i found on this forum. None worked

It sounds like you have a "hashbang" at the top of your script, like this:

#!/usr/bin/env python3

Try replacing that with a more specific one, like

#!/usr/local/bin/python3.9

/rappsody/local/bin/python3.9: no such Python interpreter /rappsody/local/bin/python3 /rappsody/local/bin/python

All not working. In console its running fine. It is also working with the always on task, but i can only have 1 there and i dont want to pay more because the schedules task is not working.

Not /rappsody/local/bin/python3.9, /usr/local/bin/python3.9

its working now, thank you!