Take the following steps to install Tensorflow and Keras in an Anaconda environment:
- Download and install Anaconda
- Create a conda environment named 'tf' with the following:
conda create -n tf python=3.5 - Activate the conda environment
activate tf - Install Tensorflow inside conda environment (GPU-version):
pip install --upgrade tensorflow-gpu - Install Keras
pip install --upgrade keras - Install Matplotlib, Cairos
conda install matplotlib
conda install pycairo