How to Run Python3 on Sublime Text 3 (Window 10)
3 min readMar 9, 2021
First, we need to download Sublime Text
Sublime Text official website : https://www.sublimetext.com/
Open Sublime Text 3
Install SublimeREPL / SublimeCodeIntel / AutoPep8
Use shortcut keys — Ctrl + Shift + p 👇
Type “package install” 👇
Type “SublimeREPL / SublimeCodeIntel / AutoPep8”
I’ve already downloaded it,so we can’t see the SublimeREPL here.☝
Anyway, just install it!
If we succeed…
We’ll find these !
Set the hotkey F5
Preferences > Key Bindings-User
Type code:
{ “keys”: [“f5”], “caption”: “SublimeREPL:Python”, “command”: “run_existing_window_command”, “args”: { “id”: “repl_python_run”, “file”: “config/Python/Main.sublime-menu” } },
Now, we can press F5 to run the code!!!