-
Notifications
You must be signed in to change notification settings - Fork 2
Home
H. Joe Lee edited this page Apr 23, 2019
·
16 revisions
Welcome to the pytaf wiki!
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 .
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 .
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.
Add the following line to use pytaf on Google Colab.
!pip install git+https://github.com/TerraFusion/pytaf.git
See pytaf.ipynb for demo.