OS X install and tips

View the Project on GitHub nicolas-brousse/osx-install-and-tips

← Go home

Homebrew

Homebrew installation

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew update

Add some Homebrew repositories

$ brew tap homebrew/bundle
$ brew tap homebrew/services

Install commons

$ brew install openssl
$ brew install wget curl tree htop
$ brew install git git-lfs git-extras gist
$ brew install bash zsh
# $ brew install ossp-uuid
$ brew install ssh-copy-id duck
$ brew install vim macvim
$ brew install imagemagick jpegoptim
$ brew install node yarn
$ brew install ffmpeg --with-x265

$ brew install scw # Scaleway.com CLI
$ brew install forego

Databases

$ brew install postgresql [mysql] [sqlite]
$ brew install redis memcached

Now we lock the database formulae to avoid auto update.

$ brew pin postgresql [mysql] [sqlite]

Checks all is good

$ brew doctor

Tips

Somes tips here.



← Go home