Chocolatey Install of C Python
These instructions serve as an alternative to the Anaconda installation instructions, which you can use if the installation fails. There is no need to install it both ways.
- Download and install python from https://www.python.org/downloads/
Package install steps
In Windows, you need to add add an item to the system %PATH environment variable in order to add pip
to the system PATH
- open up windows explorer (
windows
+e
)
- right click on “this pc” and select “properties”
- click on “advanced system settings” in the “related links” section
- click on “environment variables”
- The dialog that pops open has two windows. In the top window, scroll down to see if you can find an entry for “Path”. If so, “edit” the path. If not, create it by selecting “new”.
- Add
C:\Users\<USERNAME>\AppData\Local\Programs\Python\Python<VERSIONNUMBER>\Scripts
to the list of folders
- replace with your user name
- replace with your version number
- the final example should be something like
C:\Users\danaukes\AppData\Local\Programs\Python\Python313\Scripts
- also add
C:\Users\<USERNAME>\AppData\Roaming\Python\Python<VERSIONNUMBER>\Scripts
- replace with your user name
- replace with your version number
- the final example should be something like
C:\Users\danaukes\AppData\Roaming\Python\Python313\Scripts
- hit ok and close all the windows
- test this by opening a new powershell window (
windows
+x
, then “terminal” or i
)
- type
pip install --user esptool thonny
- once complete, type
thonny
to open thonny.