Skip to content
H. Joe Lee edited this page Apr 23, 2019 · 16 revisions

Welcome to the pytaf wiki!

Installation

Anaconda

If you do not already use a Python Distribution, we recommend Anaconda which supports most versions of Microsoft Windows, OSX/MacOS, and a variety of Linux Distributions.

$conda install --yes --file requirements.txt
$pip install .

System Python

If your system has a Python but you don't have a super user privilege, we recommend virtualenv for installation.

$virtualenv venv
$source venv/bin/activate
$pip install -r requirements.txt && pip install .

Blue Waters

pytaf was tested with Blue Waters. Blue Waters has a python module and you need to activate it first.

$module load bwpy

Blue Waters python provides virtualenv, too. See Blue Waters Python Guide for details.

Google Colab

!pip install git+https://github.com/TerraFusion/pytaf.git
Clone this wiki locally