Skip to content

Instantly share code, notes, and snippets.

@LukeGary462
Created July 18, 2023 20:32
Show Gist options
  • Select an option

  • Save LukeGary462/07c68171240cb53289fe7753c64cfc78 to your computer and use it in GitHub Desktop.

Select an option

Save LukeGary462/07c68171240cb53289fe7753c64cfc78 to your computer and use it in GitHub Desktop.
windows programs setup
:: 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