I can't make SublimeREPL run Python 3, instead it's running Python 2
问题 As you can see from the following code: I am trying to run a simple code that checks the python version and takes the user's input: import platform print(platform.python_version()) msg = input("Hello, how are you? ") print(msg) We know that Sublime doesn't take any user input in a default fashion, so that's why I installed SublimeREPL, the inconvenience that I'm having is that an error arrises when I run the code above in SublimeREPL:( The code runs fine (apart the fact that it can't take