Skip to content

Instantly share code, notes, and snippets.

@jvidalba1
Forked from edymerchk/mac_install.txt
Last active September 6, 2023 04:29
Show Gist options
  • Save jvidalba1/bbb6898b75e41f4f132f to your computer and use it in GitHub Desktop.
Save jvidalba1/bbb6898b75e41f4f132f to your computer and use it in GitHub Desktop.
Mac installation environment

iTerm2

http://iterm2.com/

Oh my ZSH

https://github.com/robbyrussell/oh-my-zsh

HomeBrew

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

Git

brew install git

wget

brew install wget

brew install gnupg

Image Magick

brew install imagemagick

Node

brew install node

Postgres

brew install postgres
ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist

Extra:

  • Rbenv and ruby-build brew install rbenv ruby-build

  • Add rbenv to profiles echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.profile echo 'eval "$(rbenv init -)"' >> ~/.profile echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc echo 'eval "$(rbenv init -)"' >> ~/.zshrc

  • Install ruby rbenv install 1.9.3-p374

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment