Skip to content

Instantly share code, notes, and snippets.

@raph
raph / gist:2ad0fab5ee17937feb8d419c620254da
Last active November 21, 2021 05:23
Install python the right way on macos
#!/bin/zsh
if ! command -v brew &> /dev/null
then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
brew update
brew install pyenv pyenv-virtualenv