Skip to content

Setting Up Local Testing Environments

Mikko Kotila edited this page Apr 11, 2019 · 3 revisions

Before pushing anything to the Talos repo, make sure that all tests pass on different python versions. If you are on conda, first create the environments.

NOTE: We're also testing for python3.7 even though Travis does not support it yet but Talos does.

create the environments

conda create --name talos_27 python=2.7
conda create --name talos_37 python=3.5
conda create --name talos_37 python=3.6
conda create --name talos_37 python=3.7

install requirements for the environments

NOTE: you have to first install tensorflow based on your system.

First activate one of the environments:

conda activate talos_37

And install the required packages:

pip install -r requirements.txt

Clone this wiki locally