-
Notifications
You must be signed in to change notification settings - Fork 2
Python setup in Ubuntu & OS X
aunindadf edited this page Feb 24, 2020
·
15 revisions
On a fresh Ubuntu or OS X box (either locally on on AWS)....
$ sudo apt-get update
$ sudo apt-get install pip
$ sudo apt-get install python3-pip
$ pip3 install pandas
(if you don't have Homebrew, install it first)
$ ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
$ brew install git
$ brew install python3
$ curl -O http://python-distribute.org/distribute_setup.py
$ python distribute_setup.py
$ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
$ python get-pip.py
$ mkdir dcm-graph
$ cd dcm-graph
$ git init
$ git remote add origin https://github.com/DFID/dcm-graph.git