Skip to content

Instantly share code, notes, and snippets.

@douglasmiranda
Last active July 16, 2018 20:42
Show Gist options
  • Select an option

  • Save douglasmiranda/0d6bef2ca5b00e4d52804b2d330f8618 to your computer and use it in GitHub Desktop.

Select an option

Save douglasmiranda/0d6bef2ca5b00e4d52804b2d330f8618 to your computer and use it in GitHub Desktop.
install packages - macos
#!/usr/bin/env bash
# Install Xcode Command Line Tools.
xcode-select --install
# Install Homebrew.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install brew basics (auto-updating).
brew install terminal-notifier
brew tap domt4/autoupdate
brew autoupdate --start --upgrade --cleanup --enable-notifications
# Install brew essentials.
brew install git
brew install ack
# Install download utilities.
brew install wget
brew install httpie
brew install fish
brew install pipenv
echo "set -gx PATH $HOME/.local/bin \$PATH" >> ~/.config/fish/config.fish
brew install pyenv
echo "status --is-interactive; and source (pyenv init -|psub)" >> ~/.config/fish/config.fish
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment