Python Forum
How to link Sublime Text 3 Build system to Python 3.9 Using Windows 10 - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How to link Sublime Text 3 Build system to Python 3.9 Using Windows 10 (/thread-31204.html)



How to link Sublime Text 3 Build system to Python 3.9 Using Windows 10 - Fanman001 - Nov-27-2020

Am trying to use Sublime Text 3 (Build3211) with Python 3.9.0 on Windows 10.

Have downloaded both successfully and

Gone to Sublime Text to: Tools -> Build System -> New Build System
and put the next lines:
{
“cmd”: [“python3”, “-u”, “$file”],
“file_regex”: “^[ ]File “(…?)”, line ([0-9]*)”,
“selector”: “source.python”
}

Then saved it with the name: python3.sublime-build

But when I write a program like:

print(“Help”) and run under Sublime Text to Tools Python 3, I get the following message:

Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640[Finished in 0.3s]

Am just beginning to learn how to code… PLEASE HELP!


RE: How to link Sublime Text 3 Build system to Python 3.9 Using Windows 10 - snippsat - Nov-27-2020

It's not python3 on Windows,will link to Microsoft Store.
Use python,look this and do same test with python and pip commands.

I will say that VS Code(Free) is better choice,if not already bought Sublime.
VS Code from start


RE: How to link Sublime Text 3 Build system to Python 3.9 Using Windows 10 - martpogs - Mar-04-2021

(Nov-27-2020, 10:51 PM)snippsat Wrote: It's not python3 on Windows,will link to Microsoft Store.
Use python,look this and do same test with python and pip commands.

I will say that VS Code(Free) is better choice,if not already bought Sublime.
VS Code from start

Thank you very much. Kind sir, you've just answered my problem.