I like testing my python files from command prompt instead of inside of PyCharm, which is what I use. I use Python 3.6, and after downloading Python 2.7, there was clearly some kind of conflict, It would no longer execute my python files directly in command prompt. I reverted everything back to normal, but it now uses "pythonw" to externally execute my file, instead of executing it right inside command prompt, how can I restore this?
Example:
C:Users\User\PycharmProjects(file-name)> main.py
(Executes through pythonw)
I'd like it to execute directly in command prompt as it used to by default, instead of it using something external. Thanks.