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 example in a file talos_minimal.py on your present working directory.

7. Get inside a python console (no jupyter for now!):

python

8. Perform a test using the minimal example:

import talos as ta

Clone this wiki locally