The reason this message is showing up is due to a few new updates on Replit and is completely normal. If you would like to remove it, go to your .replit file and put the following code on line 1: run = "clear && python3 main.py".
There’s no difference.
Always /nix/store/zqk3m21442kvpjwd3rh41wdavqkzkyik-python3-wrapper/bin/python3 $file on the console.
I have already put the code run = "clear && python3 main.py" on line 1 but always not working.
Welcome to Ask! Could you provide the link to the Repl you tried this on? Also the nix/store output is simply the command used to run the Repl, and once prybar (interactive console) returns, it will do away.
You have to add the run command to .replit, not main.py. .replit is a hidden file so you’ll need to click the 3 dots and “Show hidden files” to be able to see it. nix/store is not an error or a bug though.
In order to get rid of the nix/store output, that is a solution. Once prybar returns that will also fix it. Another solution would be to make the following code be lines 1 and 2 of your Python Repl:
No I do not but NuclearPasta pointed out that running python3 -i main.py will have the same functionality as prybar. You could even set that as your run command if you felt the need to.