Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

05.04 Install Python

Anthony Sottile edited this page Dec 31, 2017 · 2 revisions

Install Python

A note about Python version.

Currently SuttaCentral uses python3.3, however python3.4 may be used instead as the codebase is entirely compatible.

Ubuntu

sudo apt-get install -y build-essential python python-setuptools \
  python-dev python3.3 python3.3-dev

Ubuntu <= 12.04

sudo apt-get install -y python-software-properties
sudo add-apt-repository -y ppa:deadsnakes
sudo apt-get update
sudo apt-get install -y build-essential python python-setuptools \
  python-dev python3.3 python3.3-dev

OS X

Install XCode... https://developer.apple.com/xcode/

Install Homebrew... http://mxcl.github.io/homebrew/

brew install python3

A note about Python3.4

While SuttaCentral currently uses python3.3, the code will also work properly in python3.4, hence python3.4 can be used instead of python3.3

Clone this wiki locally