Skip to content
Curt Hostetter edited this page Nov 29, 2016 · 1 revision

###Prerequisites

  • Python version 3.4+
  • Pip3

##For Use:

  1. Clone the repository in a directory
  2. Navigate to your directory in the terminal
  3. Execute python3 setup.py install

##For Development:

  1. We request all developers of watershed setup a virtual environment when developing
  • Install virtualenv using pip3 install virtualenv
  1. Create a Virtual Environment using virtualenv venv. This outputs a folder venv which contains the virtual environment files
  2. Switch to the virtual environment using source venv/bin/activate
  • If you are using csh or fish, use activate.csh or activate.fish
  1. Clone the repository in a separate directory from your virtual environment
  2. Execute python3 setup.py develop inside the directory
  3. You may now freely modify code within watershed

Clone this wiki locally