Skip to content

Instantly share code, notes, and snippets.

@arp19690
Created July 30, 2020 17:22
Show Gist options
  • Save arp19690/f8fb5924e9999e289dad09ca39d72bf5 to your computer and use it in GitHub Desktop.
Save arp19690/f8fb5924e9999e289dad09ca39d72bf5 to your computer and use it in GitHub Desktop.
Installing Python, Pip, and VirtualEnv on Mac OS
# Update Homebrew
brew update
# Install python via brew
brew install python
# To install pip
sudo easy_install pip
# Updating pip to the latest version, just in case
pip install - upgrade pip
# Installing VirtualEnv now
pip install virtualenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment