Aktionen

Install Jupyter & Tensorflow on Windows: Unterschied zwischen den Versionen

Aus exmediawiki

(Die Seite wurde neu angelegt: „Download & Install anaconda https://www.anaconda.com/download/#windows Update Anaconda. Open Anaconda Prompt and type conda update conda conda update --a…“)
 
 
Zeile 22: Zeile 22:
 
  conda install spyder
 
  conda install spyder
 
  conda install matplotlib
 
  conda install matplotlib
 +
 +
evtl. PIP installieren
 +
conda install pip
  
 
TensorFlow installieren
 
TensorFlow installieren

Aktuelle Version vom 11. Oktober 2018, 16:41 Uhr

Download & Install anaconda

https://www.anaconda.com/download/#windows

Update Anaconda.

Open Anaconda Prompt and type

conda update conda
conda update --all

python environment, with python 3.5, named as "tensorflow"

conda create --name tensorflow python=3.5

environement aktivieren

activate tensorflow

Bibliotheken installieren:

conda install jupyter
conda install scipy
conda install pandas
conda install seaborn
conda install scikit-learn
conda install spyder
conda install matplotlib

evtl. PIP installieren

conda install pip

TensorFlow installieren

pip install tensorflow

Keras installieren

conda install -c conda-forge keras

danach type:

ipython

ipython prompt öffnet sich... > in diesem prompt type:

import tensorflow as tf
import keras

im anaconda prompt type um ein jupyter notebook zu starten in dem sich tensorflow code ausführen lässt:

activate tensorflow
jupyter notebook