Home > Software engineering >  Starting process with command `phyton main.py`
Starting process with command `phyton main.py`

Time:10-29

i had a issue at my procfile on heroku specified below :

2021-10-28T13:27:10.696155 00:00 heroku[worker.1]: Starting process with command `phyton main.py`
2021-10-28T13:27:11.407922 00:00 heroku[worker.1]: State changed from starting to up
2021-10-28T13:27:12.244751 00:00 heroku[worker.1]: Process exited with status 127
2021-10-28T13:27:12.374355 00:00 heroku[worker.1]: State changed from up to crashed
2021-10-28T13:27:12.108608 00:00 app[worker.1]: bash: phyton: command not found

i already use phyton buildpacks and its still not working then my Procfile is like this : worker: phyton main.py

thanks if u can help me and sorry for trash speechment

CodePudding user response:

You need to correct the Procfile (mispelling)

worker: python main.py
  • Related