📜  在 ubuntu 中获取 tensorflow 版本版本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:32.500000             🧑  作者: Mango

代码示例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