$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Anaconda TensorFlow Installation in Debian – Step-by-step

March 1, 2023 | By the+gnu+linux+evangelist.

Installing

  1. 2. Installing Anaconda

    How to Install Anaconda Python on Debian:

    Here Anaconda Python Setup Debian
    Links to Installation Guide for Anaconda Python on Debian Linux
  2. 3. Using TensorFlow

    Then to Use TensorFlow on Debian
    The Recommend way is of Creating a separate Virtual Environment to house the components.
    So for the Stable Release CPU-only:

    Copy
    conda create -n tf tensorflow

    And then to Activate it:

    Copy
    conda activate tf

    Instead for the enhanced GPU Release:

    Copy
    conda create -n tf-gpu tensorflow-gpu
    Copy
    conda activate tf-gpu

    Especially relevant: this Software support CUDA 10 only.
    So to Setup it for another CUDA Version use, for instance here below the 9 one:

    Copy
    conda create -n tf-gpu-cuda9 tensorflow-gpu cudatoolkit=9.0
    Copy
    conda activate tf-gpu-cuda9

Contents


Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,