TensorFlow: Difference between revisions
Jump to navigation
Jump to search
Line 81: | Line 81: | ||
|valign='top'| | |valign='top'| | ||
* [https://github.com/pgadmin-org/pgadmin4/blob/master/Dockerfile PgAdmin 4 » Dockerfile » Alpine] | |||
* [https://github.com/better/alpine-tensorflow/blob/master/Dockerfile Tensorflow » Dockerfile » Alpine] | |||
|- | |- |
Revision as of 12:48, 11 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 apk list --installed|grep bash |
apk search | grep ^bash apk search | grep bash |
apk info --contents bash apk info --rdepends bash |
References
| ||