From charlesreid1

Homebrew is a package manager for mac os x.

Replaces Fink and Macports.

Handling PYTHONPATH with Homebrew

PYTHONPATH is hands-down the absolute #1 pain in the ass in getting Python working, mainly because there has been a proliferation of Python versions and distributions (Python 2, Python 3, Python.org Python, Homebrew Python, Anaconda Python, Enthought Python, and also IronPython/Jython/Pypy) and that means when you try and update your PYTHONPATH for one of those Pythons, you update your PYTHONPATH for every single Python.

This leads to all kinds of messes, like when you run a pip install command and it uses a pip for Python A, and then you run the Python command and it runs Python B, and none of the packages are available.

If you want to fix this with the Homebrew Python, you can put modifications to the PYTHONPATH into a small file that Homebrew reads instead. So, to add /usr/local/lib/python2.7/site-packages to the PYTHONPATH for your Homebrew Python, you can run the command:

echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> /Users/charles/Library/Python/2.7/lib/python/site-packages/homebrew.pth


Homebrew Init Script for New Macs

Via https://github.com/charlesreid1/dotfiles

https://github.com/charlesreid1/dotfiles/blob/master/brew.sh

#!/usr/bin/env bash

brew update

# Install command-line tools using Homebrew.

# Make sure we’re using the latest Homebrew.
brew update

# Upgrade any already-installed formulae.
brew upgrade

# Install GNU core utilities (those that come with macOS are outdated).
# Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`.
brew install coreutils

# Install some other useful utilities like `sponge`.
brew install moreutils

# Install GNU `find`, `locate`, `updatedb`, and `xargs`, `g`-prefixed.
brew install findutils

# Install GNU `sed`, overwriting the built-in `sed`.
brew install gnu-sed --with-default-names

# Install Bash 4.
# Note: don’t forget to add `/usr/local/bin/bash` to `/etc/shells` before
# running `chsh`.
brew install bash
brew tap homebrew/versions
brew install bash-completion2

# Switch to using brew-installed bash as default shell
if ! fgrep -q '/usr/local/bin/bash' /etc/shells; then
  echo '/usr/local/bin/bash' | sudo tee -a /etc/shells;
  chsh -s /usr/local/bin/bash;
fi;

# Install `wget` with IRI support.
brew install wget --with-iri

# Install RingoJS and Narwhal.
# Note that the order in which these are installed is important;
# see http://git.io/brew-narwhal-ringo.
brew install ringojs
brew install narwhal

# Install more recent versions of some macOS tools.
brew install vim --with-override-system-vi
brew install homebrew/dupes/grep
brew install homebrew/dupes/openssh
brew install homebrew/dupes/screen
brew install homebrew/php/php56 --with-gmp

# Install font tools.
brew tap bramstein/webfonttools
brew install sfnt2woff
brew install sfnt2woff-zopfli
brew install woff2

# Install some CTF tools; see https://github.com/ctfs/write-ups.
brew install aircrack-ng
brew install bfg
brew install binutils
brew install binwalk
brew install cifer
brew install dex2jar
brew install dns2tcp
brew install fcrackzip
brew install foremost
brew install hashpump
brew install hydra
brew install john
brew install knock
brew install netpbm
brew install nmap
brew install pngcheck
brew install socat
brew install sqlmap
brew install tcpflow
brew install tcpreplay
brew install tcptrace
brew install ucspi-tcp # `tcpserver` etc.
brew install xpdf
brew install xz

# Install other useful binaries.
brew install ack
brew install dark-mode
#brew install exiv2
brew install git
brew install git-lfs
brew install imagemagick --with-webp
brew install lua
brew install lynx
brew install p7zip
brew install pigz
brew install pv
brew install rename
brew install rhino
brew install speedtest_cli
brew install ssh-copy-id
brew install testssl
brew install tree
brew install vbindiff
brew install webkit2png
brew install zopfli

# Remove outdated versions from the cellar.
brew cleanup

Homebrew Science

brew tap homebrew/science


Dotfiles

Homebrew script for running on a clean Mac install: https://git.charlesreid1.com/dotfiles/mac/src/master/brew_install.sh

Flags