Sh: 1: python : not found

Question: how can i resolve this

Repl link: YouTube

sh: 1: Python: not found

Hey @bjerrykibs!

Could you provide the link to your Repl? That’d help us to debug your issue easier than a YouTube link :upside_down_face:

3 Likes

Hello, is this the repl you are talking about:
https://replit.com/@bjerrykibs/JerryFlyTech-3

In the hidden file .replit, the configuration is wrong which is causing the error.

run = "Python  app.py"

Change Python to python (it is case-sensitive) and it should work.
Alternatively, you can replace the run variable with:

entrypoint = "app.py"
2 Likes

https://replit.com/@bjerrykibs/Baluku-Jerry

Running that Repl myself, it seems fine besides an indentaion error.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.