Created
July 18, 2023 20:32
-
-
Save LukeGary462/07c68171240cb53289fe7753c64cfc78 to your computer and use it in GitHub Desktop.
windows programs setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: power shell only | |
| :: chocolatey | |
| Set-ExecutionPolicy AllSigned; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
| :: scoop | |
| iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
| :: general programs | |
| scoop install curl wget 7zip cmder file ffmpeg openssh tar | |
| choco install sharex spotify -y | |
| :: embedded/software development tools | |
| scoop install gcc git make ctags | |
| scoop bucket add extras | |
| scoop bucket add main | |
| scoop install extras/gcc-arm-none-eabi | |
| scoop install main/avr-gcc | |
| scoop install main/avrdude | |
| scoop install main/stlink | |
| choco install sublimetext4 putty meld python37 python39 python311 -y | |
| git config --global remote.origin.prune true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment