【Tensorflow】学习笔记(01):轻松入门Tensorflow-TensorFlow开发环境搭建

立即学习:https://edu.csdn.net/course/play/26266/326661?utm_source=blogtoedu

# conda的配置

1. 安装 Python环境:推荐安装 Anaconda

2. 使用建立 conda建立虚拟环境

conda create --name tf2.0.0rc1 python=3.7

    (激活 conda环境

      1. 系统中需要输入 activate

      2. conda activate tf2.0.0rc1) 

3.使用pip安装 TensorFlow

pip install tensorflow

    (使用清华源加上  -i https://pypi.tuna.tsinghua.edu.cn/simple)

# Google的Colab

1. 免费磁盘和内存

猜你喜欢

转载自blog.csdn.net/weixin_43164778/article/details/104230349