Can't get my python file to run

Question: I added [interpreter] command = "node index.js" and I still get error message (Run isn’t configured. Try adding a .replit and configuring it https://docs.replit.com/programming-ide/configuring-run-button) I added correct version of interpreter I used in my project. I am new to .replit so what am I missing?

Replit Profile: https://replit.com/@hikite1

The [interpreter] section is generally legacy, outdated configuration for an interpreter called prybar.
Instead, you can use the top-level run variable.

run = "node index.js"

Also, you say something about python in the title. What python file?

1 Like