文章目录
前言
电脑重装系统了,顺便简单记录一下我的tensorflow==2.5.0 CPU的安装过程
一、创建一个虚拟环境?
conda create -n tf2 python=3.9
其中tf2为虚拟环境名字,随便起,python=3.9 感觉2023了,3.9好用一些。
二、确定 输入 y
三、激活你的环境
四、安装tensorflow==2.5.0
python3.9 可以安装的tensorflow版本如下:
Could not find a version that satisfies the requirement tensorflow==2.3 (from versions: 2.5.0, 2.5.1, 2.5.2, 2.5.3, 2.6.0rc0, 2.6.0rc1, 2.6.0rc2, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.7.0rc0, 2.7.0rc1, 2.7.0, 2.7.1, 2.7.2, 2.7.3, 2.7.4, 2.8.0rc0, 2.8.0rc1, 2.8.0, 2.8.1, 2.8.2, 2.8.3, 2.8.4, 2.9.0rc0, 2.9.0rc1, 2.9.0rc2, 2.9.0, 2.9.1, 2.9.2, 2.9.3, 2.10.0rc0, 2.10.0rc1, 2.10.0rc2, 2.10.0rc3, 2.10.0, 2.10.1, 2.11.0rc0, 2.11.0rc1, 2.11.0rc2, 2.11.0, 2.11.1, 2.12.0rc0, 2.12.0rc1, 2.12.0, 2.13.0rc0)
pip install tensorflow==2.5.0
五、利用清华镜像源加速一下,不然等到猴年马月!
https://pypi.tuna.tsinghua.edu.cn/simple
六,开始安装!!
pip install tensorflow==2.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
七、安装成功
八、进行测试
不需要复杂的测试命令,只需要调一下包即可!!
如果不报错,那么安装成功!!
import tensorflow as tf