TensorFlow for AI Applications

Windows 10 / Windows 11

Here’s a six-step guide to installing TensorFlow in Jupyter Notebook, available in both German and English, for your WordPress site:

English

  1. Install MinicondaDownload Miniconda3 for Windows from the Miniconda website download and install it
  2. Installing Jupyter NotebookOpen the Miniconda terminal and enter conda install jupyter one
  3. Launch Jupyter NotebookIn the Miniconda terminal jupyter notebook one
  4. Install TensorFlowAdd a cell block in your Jupyter Notebook !pip install tensorflow one
  5. Try out TensorFlowWrite some test code in Jupyter Notebook:

import tensorflow as tf
   a = tf.constant(2)
   b = tf.constant(3)
   c = tf.add(a, b)
   print(c.numpy())

Create your own TensorFlow environment**: Set up a dedicated Python environment for TensorFlow using Conda or virtualenv (optional but recommended).

English

  1. Install MinicondaDownload Miniconda3 for Windows from the Miniconda website and install it.
  2. Install Jupyter NotebookOpen the Miniconda terminal and enter conda install jupyter.
  3. Launch Jupyter NotebookIn the Miniconda terminal, type jupyter notebook.
  4. Install TensorFlowIn a Jupyter Notebook cell, enter !pip install tensorflow.
  5. Test TensorFlowWrite some test code in Jupyter Notebook:
import tensorflow as tf
   a = tf.constant(2)
   b = tf.constant(3)
   c = tf.add(a, b)
   print(c.numpy())
  1. Set up a dedicated environment for TensorFlow: Set up a specific Python environment for TensorFlow using Conda or virtualenv (optional but recommended).

Sounds like your project?

Write to me or start a non-binding project request.

Project requestContact