已经安装tensorflow但是jupyter ModuleNotFoundError: No module named 'tensorflow'
时间: 2023-10-12 19:21:22 浏览: 81
No module named 'tensorflow.examples'
这可能是由于您安装的tensorflow版本不兼容jupyter导致的问题。您可以尝试在jupyter notebook中运行以下命令解决该问题:
```python
!pip install tensorflow
```
如果问题仍然存在,您可以尝试重新安装tensorflow并确保您的jupyter notebook和tensorflow版本兼容。
阅读全文