Basic Tools for Development

Download, install, update, and manage basic software tools on Windows.

Read about Windows Software Automation

Installing software on Windows can be done by typing simple commands with Chocolatey, a software automation tool for Windows.

Read about Common Tools for Development

If you don’t have these tools installed (or even if you do), we recommend using Chocolately to install them. Chocolatey makes it easy to keep your software up-to-date.

Web browsers

Editors

Working with Large Compressed Files

JavaScript without a Browser

Web Utilities

Version Control

Utilities

All recommended tools are free.

Install Chocolatey

Use powerful automation tools to make installing software easier. Install Chocolatey, the Windows Package Manager from https://chocolatey.org/ by following the directions on the website.

Install Software with Chocolatey

Right-click in your Documents folder, and select ‘Open PowerShell as Administrator’. If you don’t have this option, see Windows Setup for Developers.

Using the -y flag is optional and will automatically answer ‘yes’ to install questions.

It’s safe to install software you already have (e.g., typically Chrome is already installed). You can find additional information by going to the specific link from https://chocolatey.org/packages.

All at once:

choco install googlechrome notepadplusplus (add all packages as desired) -y

Refresh environment variables if they have been modified.

refreshenv

Or one at a time:

choco install googlechrome -y
choco install notepadplusplus -y
choco install vscode -y
choco install 7zip -y
choco install nodejs -y
choco install curl -y
choco install wget -y
choco install git -y
choco install tortoisegit -y
choco install putty -y
choco install postman -y

Optional: Browse Chocolatey Software Packages

Explore at https://chocolatey.org/packages.

Optional: Verify Installation

  1. View list of locally-installed programs. Open PowerShell here as Admin and run:
choco list -local
  1. Inspect the downloaded software - the default location is ‘C:\ProgramData\chocolatey’ (or for earlier installations, ‘c:\chocolatey’).

  2. Inspect your updated Windows environment variables. Hit Win key and type env. Select “Edit System Environment Variables”. From System Properties window Advanced tab, click “Environment Variables”.

Periodically: Upgrade All

To upgrade your versions, periodically run choco upgrade. You can automate this script to make it even easier.

choco upgrade chocolatey -y
choco upgrade all -y
refreshenv

Installing Without Chocolatey

Alternatively, each tool can be installed in the traditional manner. Just go to the website for the software and follow instructions to download, install, and configure tools using provided installers.

Installation Issues with VS Code and TortoiseGit

Important!

Optional

Firefox Add-ons

Ruby + Dev kit (for Jekyll, etc.)

choco install ruby -y
refreshenv
choco install ruby2.devkit -y
refreshenv

Ananconda3 (for Python)

choco install anaconda3 -y

Professional Java Development

choco install openjdk -y
choco install eclipse -y
choco install gradle -y
choco install maven -y

Terms

Next Steps

Configure Git distributed version control system and automate software upgrades

See Also