Install key developer tools to assist with running commands in the terminal. Below is a list of all the programs that will be installed with a breif explaination of what they do.
- Install Homebrew
- Install Node.js and npm
- Install vmd. Allows you to open .md (Markdown files) in a new window using the vmd command.
This install script is intended to download and install the latest available developer tools to assist with running commands in the terminal.
You can install using this script: $ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
You can also configure sudo to not ask for a password. This should only be done in a VM as this would be considered too much of a security risk for most situations.
$ sudo vi /etc/sudoersThe file contains the below two lines, comment out the first %wheel line and uncomment the second.
## Allows people in group wheel to run all commands
# %wheel ALL=(ALL) ALL
## Same thing without a password
%wheel ALL=(ALL) NOPASSWD: ALLExit the file with :wq!