Ich muss herausfinden, welche Version von TensorFlow ich installiert habe. Ich verwende Ubuntu 16.04 Langzeitunterstützung.
print(tf.__version__)
Ich muss herausfinden, welche Version von TensorFlow ich installiert habe. Ich verwende Ubuntu 16.04 Langzeitunterstützung.
print(tf.__version__)
Antworten:
Dies hängt davon ab, wie Sie TensorFlow installiert haben. Ich werde die gleichen Überschriften verwenden, die in den Installationsanweisungen von TensorFlow verwendet werden, um diese Antwort zu strukturieren.
Lauf:
python -c 'import tensorflow as tf; print(tf.__version__)' # for Python 2
python3 -c 'import tensorflow as tf; print(tf.__version__)' # for Python 3
Beachten Sie, dass python
dies /usr/bin/python3
in einigen Linux-Distributionen mit verknüpft ist. Verwenden Sie es daher python
anstelle von python3
in diesen Fällen.
pip list | grep tensorflow
Für Python 2 oder pip3 list | grep tensorflow
Python 3 wird auch die installierte Version von Tensorflow angezeigt.
Lauf:
python -c 'import tensorflow as tf; print(tf.__version__)' # for both Python 2 and Python 3
pip list | grep tensorflow
zeigt auch die installierte Version von Tensorflow an.
Zum Beispiel habe ich TensorFlow 0.9.0 in einem virtualenv
für Python 3 installiert . Also bekomme ich:
$ python -c 'import tensorflow as tf; print(tf.__version__)'
0.9.0
$ pip list | grep tensorflow
tensorflow (0.9.0)
git rev-parse HEAD
'module' object has no attribute '__version__'
alspython -c 'import tensorflow as tf; print(tf.__version__)'
"
anstelle von '
:python3 -c "import tensorflow as tf; print(tf.__version__)"
Fast jedes normale Paket in Python weist die Variable .__version__
oder VERSION
der aktuellen Version zu. Wenn Sie also die Version eines Pakets finden möchten, können Sie Folgendes tun
import a
a.__version__ # or a.VERSION
Für Tensorflow wird es sein
import tensorflow as tf
tf.VERSION
Verwenden Sie für alte Versionen von Tensorflow (unter 0,10) tf.__version__
Übrigens, wenn Sie planen, tf zu installieren, installieren Sie es mit conda, nicht pip
Wenn Sie über pip installiert haben, führen Sie einfach Folgendes aus
$ pip show tensorflow
Name: tensorflow
Version: 1.5.0
Summary: TensorFlow helps the tensors flow
pip show tensorflow-gpu
für GPU-Version. Besser noch, tu es einfach pip list | grep tensorflow
.
import tensorflow as tf
print(tf.VERSION)
Ich habe den Tensorflow 0.12rc von der Quelle installiert und der folgende Befehl gibt mir die Versionsinformationen:
python -c 'import tensorflow as tf; print(tf.__version__)' # for Python 2
python3 -c 'import tensorflow as tf; print(tf.__version__)' # for Python 3
Die folgende Abbildung zeigt die Ausgabe:
Um weitere Informationen über Tensorflow und seine Optionen zu erhalten, können Sie den folgenden Befehl verwenden:
>> import tensorflow as tf
>> help(tf)
Holen Sie sich einfach die Versionsnummer von KERAS und TENSORFLOW -> Führen Sie diesen Befehl im Terminal aus:
[Benutzername @ usrnm: ~] python3
>>import keras; print(keras.__version__)
Using TensorFlow backend.
2.2.4
>>import tensorflow as tf; print(tf.__version__)
1.12.0
Die Tensorflow-Version kann entweder auf dem Terminal oder der Konsole oder in einem beliebigen IDE-Editor (wie Spyder- oder Jupyter-Notebook usw.) überprüft werden.
Einfacher Befehl zum Überprüfen der Version:
(py36) C:\WINDOWS\system32>python
Python 3.6.8 |Anaconda custom (64-bit)
>>> import tensorflow as tf
>>> tf.__version__
'1.13.1'
python -c 'import tensorflow as tf; print(tf.__version__)' # for Python 2
python3 -c 'import tensorflow as tf; print(tf.__version__)' # for Python 3
Hier stellt -c das als Zeichenfolge übergebene Programm dar (beendet die Optionsliste)
Tensorflow-Version im Jupyter-Notizbuch: -
!pip list | grep tensorflow
Wenn Sie TensorFlow 2.x haben:
sess = tf.compat.v1.Session (config = tf.compat.v1.ConfigProto (log_device_placement = True))
pip show [package name]
zB:pip show tensorflow
,pip show numpy
usw.