导入tensorflow返回ModuleNotFoundError:没有名为“tensorflow.python”的模块; “张量流”不是一个包

发布于 2025-01-09 07:53:55 字数 586 浏览 0 评论 0原文

我正在尝试从 PyCharm 中导入 Tensorflow。 我的Python版本是3.10,tensorflow版本是2.8。 错误的原因可能是什么?

import tensorflow as tf

并返回

module = self._system_import(name, *args, **kwargs)
ModuleNotFoundError: No module named 'tensorflow.python'; 'tensorflow' is not a packag

 python版本tensorflow versi

I am trying to import Tensorflow from within PyCharm.
My Python version is 3.10 and tensorflow version is 2.8.
What could be the cause of the error?

import tensorflow as tf

and returns

module = self._system_import(name, *args, **kwargs)
ModuleNotFoundError: No module named 'tensorflow.python'; 'tensorflow' is not a packag

python version
tensorflow versi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请验证:

  1. 确保python和tensorflow安装在您尝试执行py文件夹/code.py的同一路径中[python和操作系统是64位]

2.确保您没有使用文件名作为csv.py已经存在于 python 库中。
2. pip uninstall tensorflow 然后 pip install tensorflow==2.7 stable version 然后运行 ​​help('modules') 你可以参考 这个

类似问题:参考1
参考2

Please verify:

  1. make sure that both python and tensorflow are installed in the same path where you are trying to execute py folder/code.py [python and OS are 64 bit]

2.ensure you are not using file name as csv.py which already exist in python library.
2. pip uninstall tensorflow and then pip install tensorflow==2.7 stable version then run help('modules') you may refer to this

Similar issues: reference1
reference2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文