python3.7可以用tensorflow1.15吗
时间: 2024-05-13 19:17:03 浏览: 240
Tensorflow与python3.7适配版本
3星 · 编辑精心推荐
是的,Python 3.7可以使用TensorFlow 1.15。您可以使用pip来安装TensorFlow 1.15,如下所示:
```
pip install tensorflow==1.15
```
请注意,TensorFlow 1.15仅支持Python 3.5-3.7。如果您的Python版本不在此范围内,则需要安装其他版本的TensorFlow或升级您的Python版本。
阅读全文