Installation

batchbeagle is a pure python package. As such, it can be installed in the usual python ways. For the following instructions, either install it into your global python install, or use a python virtual environment to install it without polluting your global python environment.

Install via pip

pip install batchbeagle

Install via setup.py

Clone or download from Github.

cd batchbeagle-0.2.0
python setup.py install

Using pyenv to install into a virtual environment

(Recommended for Python programming)

If you use python and frequently need to install additional python modules, pyenv and pyenv-virtualenv are extremely useful. They allow some very useful things:

  • Manage your virtualenvs easily on a per-project basis
  • Provide support for per-project Python versions.