import tensorflow as tf
导致Conda环境出错我正在尝试使用以下命令在 Python 脚本中导入 TensorFlow 和 Keras:
import tensorflow as tf
print("TensorFlow and Keras are imported successfully!")
但是,我遇到错误,提示找不到模块tensorflow.keras。
ModuleNotFoundError: No module named 'tensorflow.keras'
.py
文件中进行。pip list
验证已安装的 TensorFlow 和 Keras 版本。ModuleNotFoundError
的 tensorflow.keras
仍然存在。为什么 TensorFlow 的导入在 Jupyter Notebook 中可以工作,但在从终端运行的
.py
文件中却失败?我该如何解决这个问题?
我尝试过的:
pip
安装了 TensorFlow 和 Keras。pip list
验证安装,以确保 TensorFlow 和 Keras 已正确安装。我的期望:
import tensorflow as tf
既可以在 Jupyter 笔记本中运行,也可以在从终端运行的常规 .py
脚本中运行。ModuleNotFoundError
。