TensorFlow: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 140: Line 140:


|valign='top'|
|valign='top'|
* [https://stackoverflow.com/questions/64193633/ Could not load dynamic library <code>libcublas.so.10</code>]
* [https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html CUDA Installation Guide for Windows]
* [https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/dockerfiles Tensorflow » Dockerfile » Ubuntu]
* [https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/dockerfiles Tensorflow » Dockerfile » Ubuntu]
* [https://github.com/pgadmin-org/pgadmin4/blob/master/Dockerfile PgAdmin 4 » Dockerfile » Alpine]
* [https://github.com/pgadmin-org/pgadmin4/blob/master/Dockerfile PgAdmin 4 » Dockerfile » Alpine]

Revision as of 14:06, 11 February 2023

Install

sudo apt udpate
sudo apt install python3-dev python3-pip python3-venv
apk update
apk add bash gcc musl-dev python3 python3-dev py3-pip libxslt-dev libxml2-dev

python3 -m venv .venv --prompt="TensorFlow"
source .venv/bin/activate
pip install --upgrade pip
python3 -m venv .venv --prompt="TensorFlow"
source .venv/bin/activate
pip install --upgrade pip

# export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
# pip install jep ads gspread

pip install tensorflow
pip show tensorflow
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
apk list --installed|grep  bash
apk add gcc
apk search | grep ^bash
apk search | grep  bash
apk add g++
apk info --contents bash
apk info --rdepends bash
apk add libc6-compat

References