Skip to content

Instantly share code, notes, and snippets.

View repentsinner's full-sized avatar

ritchie repentsinner

  • Free
  • West Coast
View GitHub Profile
@repentsinner
repentsinner / set_up_python_dev_env.sh
Last active April 30, 2019 20:23 — forked from MADindustries/set_up_python_dev_env_macos
Set up a python development environment (macOS)
#!/bin/sh
# Install Homebrew (macOS package manager)
# consider using spack (https://spack.io/) when it better supports fish
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
# Install fish (A better shell)
curl -Lo ~/Downloads/fish-3.0.2.pkg https://github.com/fish-shell/fish-shell/releases/download/3.0.2/fish-3.0.2.pkg
sudo installer -pkg ~/Downloads/fish-3.0.2.pkg -target /