Download Chocolatey to simplify installing software.
To Install Chocolatey, you must...
- Click
Windows
Button - Type
powershell
- Click
ctrl
+shift
+enter
- Choose
Yes
At this point, you should be in a window that says Administrator: Windows Powershell
- Type
cd $HOME
orcd ~
and then clickenter
to change to your user directory
You must be in Windows Powershell as Administrator to do the following steps:
- Copy & Paste the following:
Set-ExecutionPolicy Bypass; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
more info here
- Click
enter
- Type
a
and thenenter
- Wait until complete
- After waiting, type
choco --help
and then clickenter
-- this should output the information on chocolatey commands
Open Windows Powershell as Administrator and have Chocolatey installed to easily install Node.js and Git
- Copy & Paste the following:
choco install -y nodejs choco install -y git
- Click
enter
- Wait until complete... may need to hit
enter
a bunch of times... - After it is complete, type
exit
and then clickenter
- open powershell
- type
node -v
and then clickenter
-- it should return the nodejs version - type
git
and then clickenter
-- it should return information about git