MCU嵌入式AI开发笔记
初学者的TensorFlow 2.0 开发环境安装 -《MCU嵌入式AI开发笔记》(第七集)。抖音、B站、视频号等站点搜索柔贝特三哥,《MCU嵌入式AI开发笔记》视频同步更新,视频详细讲解。
07 初学者的 TensorFlow 2.0 教程
参考文档:初学者的 TensorFlow 2.0 教程
https://tensorflow.google.cn/tutorials/quickstart/beginner?hl=zh-cn
因为无法使用colab在线的运行环境,就只能在本地安装环境。参考下面的链接。
安装tensorflow运行环境
参考文档:安装 TensorFlow 2:
https://tensorflow.google.cn/install?hl=zh-cn
安装python
之后使用python的pip安装tensorflow:
Requires the latest pip
pip install --upgrade pip
Current stable release for CPU and GPU
pip install tensorflow
Or try the preview build (unstable)
pip install tf-nightly
之后执行pip install tensorflow
等吧,这样就安装好了。
过程中有错误,THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE
这个时候因为pip版本问题更新一下,
之后在执行
到这里应该安装完成了