Tensorflow, Keras with Anaconda Installation Guide - CPU System
Описание
This video will show you how to configure & install the drivers and packages needed to set up Tensorflow, Keras deep learning framework on Windows 10 CPU systems with Anaconda.
Some requirements:
- Download and installed Anaconda (https://www.anaconda.com/download/)
- Tensorflow requires Python 2.7 - 3.4, 3.5, or 3.6 (https://www.tensorflow.org/install/pip)
- Keras is compatible with Python 2.7-3.6 (https://keras.io/)
GUIDE:
Step 1: create conda environment with Python v3.6
conda create -n tensorflow anaconda python=3.6
Step 2: install Tensorflow and Keras
pip install --upgrade tensorflow
conda install keras
Step 3: verify the installation
import tensorflow as tf
import keras
print(tf.__version__)
print(keras.__version__)
Enjoy!!
Рекомендуемые видео



















