Created
October 18, 2018 15:50
-
-
Save zhiyzuo/4f8a6bd8d066773782fb0bbacb15cd37 to your computer and use it in GitHub Desktop.
A minimal `.bash_profile` file for MSCI 3250
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
# Add Homebrew `/usr/local/bin` and User `~/bin` to the `$PATH` | |
#PATH=$HOME/bin:$PATH | |
export PATH=/usr/local/bin:$PATH | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
fi | |
export PATH="/usr/local/opt/sqlite/bin:$PATH" | |
export PATH="/usr/local/opt/openssl/bin:$PATH" | |
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | |
export PATH="/usr/local/opt/icu4c/bin:$PATH" | |
export PATH="/usr/local/opt/icu4c/sbin:$PATH" | |
export PATH="/usr/local/opt/python/libexec/bin:$PATH" | |
export PATH="/usr/local/opt/libpq/bin:$PATH" | |
export PATH="/usr/local/opt/gdal2/bin:$PATH" | |
export GDAL_DRIVER_PATH=/usr/local/lib/gdalplugins | |
export PATH=/Library/Frameworks/GDAL.framework/Programs:$PATH | |
export PKG_CONFIG_PATH="/usr/local/opt/gdal2/lib/pkgconfig" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment