anaconda 安装tensorflow-gpu
时间: 2023-07-22 15:12:13 浏览: 103
anaconda和WIN10下tensorflow-gpu的安装
如果你想在 Anaconda 中安装 TensorFlow-GPU,可以使用以下命令:
conda create -n [your_environment_name]
conda activate [your_environment_name]
conda install tensorflow-gpu
如果要检查安装的 TensorFlow 版本,可以运行以下代码:
import tensorflow as tf
print(tf.__version__)
请确保你已经安装了cuda和cudnn,并且配置了环境变量。
阅读全文