Skip to content

Setting Up Unix For Mac

Sean Low edited this page Jun 12, 2021 · 1 revision

Setting Up Unix Computing Environment on macOS

Credits: Unix Workshop AY2020/21

macOS is a Unix-based operating system. Not setup is required.

To access the Unix command line interface, hit F4 to access LaunchPad, and type Terminal followed by enter .

Install Command Line Development Tool

Run

xcode-select --install

to install a set of command-line tools used for software development in macOS.

Install Homebrew

Homebrew is a command-line software manager for macOS.

If you have not installed Homebrew before, paste the following into your shell to install it.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

Install wget

wget is a useful tool to download files from the Internet. You can install wget using Homebrew:

$ brew install wget
Clone this wiki locally