Skip to content

Instantly share code, notes, and snippets.

@zhiyzuo
Created October 18, 2018 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhiyzuo/4f8a6bd8d066773782fb0bbacb15cd37 to your computer and use it in GitHub Desktop.
Save zhiyzuo/4f8a6bd8d066773782fb0bbacb15cd37 to your computer and use it in GitHub Desktop.
A minimal `.bash_profile` file for MSCI 3250
# 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/openssl@1.1/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