Using Chris Titus’s Windows Utility simplifies the programming environment setup process without getting bogged down by complex instructions. If you’re new to this utility, check out the following YouTube video link for a detailed walkthrough.
YoutTube Video Link
How to set up your Python environment and install a powerful code editor:
- Open PowerShell as Administrator
Right-click on the Start button and select “Windows PowerShell (Admin)”. - Paste the Command
As shown in the vidoe, copy and paste the following command into the PowerShell window and press Enter:irm "https://christitus.com/win" | iex
- Select Your Options
A new window will open. Check the boxes for “Python” and “VSCodium” (or any code editor you prefer). - Apply Changes
The script will automatically download and install the selected code editor and the latest version of Python. This process only takes a few minutes. - Finish Up
Once the installation is complete, you can close the PowerShell script window and start coding in your new programming editor of choice.
To Timothy W Unkert’s short YouTube video where he explains:
How to Set Up VSCodium for Python Programming
If you followed the above instructions, then you can open VS Cdoium, create a new file “test.py”, save it and then enter this code:
a = 100
b = 100
c = 200
if a + b == c:
print(f"{a} plus {b} is equal to {c}")
This code will print “100 plus 100 is equal to 200” if run
in your newly set up Python environment. Happy coding!
Lexicon
Here’s a list of key terms mentioned in this article. Use them to ask an AI of your choice for more information and deepen your understanding. For quick answers, try Copilot.
- PowerShell
A task automation and configuration management framework from Microsoft. - VSCodium
A community-driven, freely-licensed binary distribution of Microsoft’s editor VSCode.