Skip to content

Instantly share code, notes, and snippets.

@arp19690
arp19690 / python_setup.sh
Created July 30, 2020 17:22
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
#!/bin/bash
# Updating UBUNTU's update center
sudo apt-get update
# Installing development related packages
sudo apt-get install language-pack-UTF-8 nginx supervisor make build-essential zlib1g-dev libbz2-dev libreadline-dev libssl-dev git python-pip mailutils postfix redis-server -y
# Upgrading PIP
sudo pip install --upgrade pip