Why is the console showing during a run a wierd message?

When I run a Python application in the beginning of the console I get the following:

/nix/store/zqk3m21442kvpjwd3rh41wdavqkzkyik-python3-wrapper/bin/python3 $file

What does this mean and how can I stop it?

Hi @JohnCoombs !
This is something part of the new Python template, and does not affect your code.
Add this line to the top off the .replit file to remove it:
run = "clear && python3 main.py"
Hope this helps!
If this answers your question, you can mark this post as a Solution.

3 Likes

This is simply the command which runs the Repl, and it shows because the prybar was removed. The solution proposed by NateDhaliwal will stop this output.

2 Likes