Forked from
Swain Lab / aliby / aliby-mirror
INSTALL.md 1.64 KiB
Installation
Tested on: Mac OSX Mojave
Requirements
We strongly recommend installing within a python environment as there are many dependencies that you may not want polluting your regular python environment. Make sure you are using python 3.
An environment can be created with using the conda package manager:
$ conda create --name <env>
$ conda activate <env>
Which you can deactivate with:
$ conda deactivate
Or using virtualenv:
$ python -m virtualenv /path/to/venv/
$ source /path/to/venv/bin/activate