v1.0.5
The enclosed script installs Mac-based HTML-, CSS-, Sass-, and JavaScript-related software and configuration files for any web development course you take with me. If you’re using macOS Catalina, Big Sur, or Monterey, then you’ll first need to grant The Terminal access to your disk. Follow this tutorial, then proceed below.
- Open The Terminal: Perform a Spotlight search by typing
⌘+spacebarand entering “terminal” - Navigate to The Root of This Repo: Type
cdinto The Terminal, followed by a space. Do not hitreturnjust yet. Drag the folder icon to the left ofinstall-web-dev-softwarein the title bar of this repo into The Terminal window. Hitreturn - Grant the Script Access: Give the script executable access to your file system by typing the following:
chmod 755 install.sh - Run The Installer: Type
./install.sh
Source: Upgrading Bash on macOS by Daniel Weibel
- Launch The Terminal
- Run
brew install bash - Edit the shells file using Atom:
sudo atom /etc/shells - Add
/usr/local/bin/bashto the tail of theshellsfile - Set the default shell for the current user:
chsh -s /usr/local/bin/bash