Created
August 19, 2019 15:00
-
-
Save bobby5892/8bfcfb2c822f629a74564a7306e18326 to your computer and use it in GitHub Desktop.
Windows 10 quick setup for dev
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
# setting up a windows development environment | |
- reset PC using windows 10 settings | |
- [win] "dev" and launch Developer Settings, tap all the apply buttons | |
- [win-x] Windows Powershell (Admin) | |
- ps> iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
- choco feature enable -n allowGlobalConfirmation | |
- ps> choco install microsoft-windows-terminal | |
- (optional) switch to elevated terminal | |
- ps> choco install git | |
- ps> choco install nodejs.install python2 jdk8 | |
- relaunch elevated shell | |
- ps> npm install -g react-native-cli | |
- ps> choco install vscode | |
- ps> choco install googlechrome | |
- ps> choco install gitkraken | |
- ps> choco install visualstudio2019community | |
- ps> choco install slack | |
- yadda yadda with choco and npm to install all your tools | |
- At this point I recomend launching the visual studio installer and pick your workloads. | |
- | |
Collapse | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment