Last active
February 3, 2021 05:33
-
-
Save M507/5247f27556e80bb2cc5e5c181e44e6a9 to your computer and use it in GitHub Desktop.
Install packer on Mac
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
| # Install Homebrew on Mac | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Install packer | |
| brew install packer | |
| # Set packer's env variables | |
| echo " | |
| export PACKER_PLUGIN_PATH="~/.packer.d/plugins" | |
| export PACKER_CONFIG_DIR="~/.packer.d" | |
| " >> ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment