Reputation: 9
I'm just a beginner in python coding but I have an issue for which I didn't found solution. I just try to run a simple script (hello world from the tutorial) but when I right click and execute the program in the terminal I just have a reply of the terminal with "c:/......../helloworld.py" (the path of my folder to my script), and not the program in itself, which should print "hello world". So if anyone know the mistake I made please tell me ! Thank you.
Upvotes: 0
Views: 148
Reputation: 107
You need especifi the program interpreted to run the script, for run python scripts write
python helloworld.py
Upvotes: 1