Sep-06-2017, 08:18 PM
Sep-06-2017, 08:23 PM
You need to post your screenshot again, but in any case tell the forum what operating system you use,
just in case its platform specific.
just in case its platform specific.
Sep-06-2017, 08:25 PM
Thanks for the reply! I am running Windows 8.1 Here's the screenshot again. https://imgur.com/a/IYkVB
Sep-06-2017, 08:34 PM
I see your problem now.
On windows you need to associate the extention .py with the python interpreter.
This is the standard doc for python3:
https://docs.python.org/3.3/using/windows.html
See section 3.4.1 you need to ensure the launcher is on your path,
from windows command prompt type:
py
This should report the version of python you use.
To run your script it will be
py script.py
On windows you need to associate the extention .py with the python interpreter.
This is the standard doc for python3:
https://docs.python.org/3.3/using/windows.html
See section 3.4.1 you need to ensure the launcher is on your path,
from windows command prompt type:
py
This should report the version of python you use.
To run your script it will be
py script.py
Sep-06-2017, 09:52 PM
Thank you. I am having trouble understanding what to do to fix this - when I type "py" into the run box, it launches a cmd type thing. What should I do from here?
Sep-26-2017, 08:50 PM
Sounds like you're seeing the interactive interpreter. You can use that to test things out.
https://docs.python.org/3/tutorial/inter...ctive-mode
https://docs.python.org/3/tutorial/inter...ctive-mode