Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 967 Bytes

setup-nix.md

File metadata and controls

29 lines (23 loc) · 967 Bytes

Linux/Unix/OS X

If you are using a *nix flavor (i.e. OS X/Mac, Linux, or Unix), let's make sure you have the correct Terminal shell set up.

  1. If you’re on a Mac:
  2. hit CMD+Space and type 'terminal'.
  3. Hit enter after selecting Terminal.
  4. If you're on Linux/Unix:
  5. open up the console or terminal application (it is assumed you already know how to do this).
  6. Type the following command and press enter:
echo $SHELL
  1. Does it read something similar to the following, ending in ‘bash’? If yes, you are good to go!
/bin/bash
  1. If not, type the following command (note that those are back ticks, not single quotes) and press enter.
chsh -s `grep bash /etc/shells`
  1. Enter your password to authorize the change.
  2. Reopen the terminal or a new tab.
  3. Double-check the change using the echo command above to make sure it reflects the new shell path.

Now you're ready for the workshop. See you there!