Last active
July 16, 2018 20:42
-
-
Save douglasmiranda/0d6bef2ca5b00e4d52804b2d330f8618 to your computer and use it in GitHub Desktop.
install packages - macos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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