TIL OS Package Managers
POSTED ON:
TAGS: mac
Cool kids use command lines to install things. 😎
You know how you can npm i
and like... things just magically work?
OSes also have package managers to make your life easier.
Windows #
INSTALL:
Follow the instructions, as you need to modify permissions.
https://chocolatey.org/install
GET CHROME & FIREFOX:
choco install googlechrome
choco install firefox
GET NODE VERSION MANAGER:
choco install nvm
Mac #
INSTALL: (As of May 22, 2021. Always check the documentations!)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
GET CHROME & FIREFOX:
brew install --cask google-chrome
brew install --cask firefox
GET NODE VERSION MANAGER:
brew install nvm
Linux #
Yikes, not touching this with a 10 foot pole.
Related TILs
Tagged: mac