Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 988 Bytes

other_setup.md

File metadata and controls

35 lines (19 loc) · 988 Bytes

Software Setup -- alternatives

This document includes ways to install the necessary Python packages for the workshop. We advise to follow the preferred instructions provided here: https://github.com/gw-odw/odw-2019/master/setup.md as those alternative methods will be likely deprecated in the future. We give them here for completeness.

Linux and Mac OS platforms: virtual environment and pip

  1. Create a new environment

python -m virtualenv gw-odw2

  1. Activate the environment

source gw-odw2/bin/activate

  1. Install the support for Ipython notebooks

(gw-odw2) $ pip install ipykernel

  1. [optional -- if old Python install] Upgrade your setup tools

pip install pip setuptools --upgrade

  1. Get the software requirements

wget -q https://raw.githubusercontent.com/gw-odw/odw-2019/master/requirements.txt -O requirements.txt

  1. Install the software

pip install -r ./requirements.txt

  1. Create the Jupyter kernel

ipython kernel install --user --name=gw-odw2