Digital Marketing

Installing chocolatey on Windows

Install chocolatey/choco on Windows 10
Click Start and type “powershell“
Right-click Windows Powershell and choose “Run as Administrator“
Paste the following command into Powershell and press enter.

Set-ExecutionPolicy Bypass -Scope Process -Force; `
  iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

Answer Yes when prompted
Close and reopen an elevated PowerShell window to start using choco

Example usage:

choco install chromedriver
choco uninstall git

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database