TensorFlow: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 41: Line 41:
|-
|-
| valign="top" |
| valign="top" |
apk list --installed|grep ^bash


| valign="top" |
| valign="top" |

Revision as of 22:00, 10 February 2023

Install

sudo apt install python3-dev python3-pip python3-venv
python3 -m venv .venv --prompt="TensorFlow"
source .venv/bin/activate

pip install --upgrade pip
pip install tensorflow
pip show tensorflow

python -c 'import tensorflow as tf; print("Tensorflow Version: ", tf.__version__)'
pip uninstall tensorflow

Knowledge

python3 -m venv .venv --prompt="TensorFlow"
# source .venv/bin/activate
# (academia) $
python3 -m venv .venv --prompt="TensorFlow"
# source .venv/bin/activate
# (molecule) $
python -m venv .venv --prompt="TensorFlow"
# .venv\Scripts\activate
# (molecule) PS>

apk list --installed|grep ^bash

References