导入tensorflow返回ModuleNotFoundError:没有名为“tensorflow.python”的模块; “张量流”不是一个包
我正在尝试从 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
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请验证:
2.确保您没有使用文件名作为csv.py已经存在于 python 库中。
2. pip uninstall tensorflow 然后 pip install tensorflow==2.7 stable version 然后运行 help('modules') 你可以参考 这个
类似问题:参考1
参考2
Please verify:
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