anaconda安装TensorFlow教程(2022.10.24)

anaconda安装TensorFlow教程

1.查看conda有哪些虚拟环境

conda env list

2.创建一个虚拟环境,命名为TensorFlow

conda create -n tensorflow python=3.8

3、打开虚拟环境TensorFlow

activate TensorFlow

4、在虚拟环境中安装TensorFlow包

pip install tensorflow

5、查看安装的TensorFlow包含哪些模块,该步骤可省略

conda list

6、验证安装是否成功,如果不报错说明安装成功

python
import tensorflow as tf

7、查看TensorFlow版本

import tensorflow as tf
tf.__version__

8、查看地址

tf.__path__

你可能感兴趣的:(1024程序员节)