Lesson 6 of 6
Package Managers
Package managers install tools and libraries automatically. npm is for JavaScript/Node.js. pip is for Python. apt and brew install system-level tools on Linux and Mac.
TERMINAL
# JavaScript / Node.js
npm install express
npm install -g vite
# Python
pip install requests
# Mac (Homebrew)
brew install git
# Ubuntu/Debian (apt)
sudo apt install nginx