Skip to content

First Line Troubleshooting (no conda)

Mikko Kotila edited this page Jan 11, 2019 · 5 revisions

1. Create new environment:

virtualenv -p python3 talos_trouble

2. Activate the environment:

source talos_trouble/bin/activate

3. Install TensorFlow (once inside env):

pip install tensorflow OR pip install tensorflow-gpu

4. Install daily development version of Talos:

pip install git+https://github.com/autonomio/talos

5. Make sure you have the latest version:

pip freeze | grep talos

6. Save the minimal Talos test in a file talos_minimal.py on your present working directory.

7. Run the test:

python -c "import talos_test; talos_test.minimal();"


NOTE: If you need to perform more elaborate testing, for example regarding outputs, you will have to get inside a python console. For first line troubleshooting, DO NOT use jupyter.