Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

chocolatey

# Chocolatey is a package management software for Windows operating system.
# With chocolatey, a user can install a lot of software packages for use through out the windows machine.
# if those are available on the chocolatey repository.
# Just like Brew for MacOS, use Chocolatey...

# Download and install chocolatey from https://chocolatey.org/install

# Open Your command prompt or Powershell with administrator rights
# Now you can run any command. Try the following commands:

# You can install the Python executable with just one command
$ choco install python
# Or specific version
$ choco install python --version <version>

# You can install the nodejs executable with just one command
$ choco install nodejs
# Or specific version
$ choco install nodejs --version <version>

# You can install the Java Development Kit (JDK) with just one command
$ choco install jdk11

# So with this package manager, we see how easy it is to get, install or update software without any hassel. Hurray!

# For more info visit https://chocolatey.org/
 
PREVIOUS NEXT
Tagged: #chocolatey
ADD COMMENT
Topic
Name
6+3 =