1. 安装Anaconda

https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

conda info来查询安装信息

conda list可以查询你现在安装了哪些库

2. cpu版的tensorflow

pip install --upgrade --ignore-installed tensorflow

测试是否成功

 

python  
import tensorflow as tf  
hello=tf.constant("Hello!")  
sess=tf.Session()  
print(sess.run(hello))

 

 3. 安装keras

pip install keras -U --pre

测试:import keras

 

相关文章:

  • 2021-10-31
  • 2022-12-23
  • 2021-08-27
  • 2021-12-29
  • 2021-11-14
  • 2021-11-21
  • 2022-03-04
  • 2022-03-03
猜你喜欢
  • 2021-12-03
  • 2021-09-29
  • 2021-07-13
  • 2021-04-15
  • 2021-05-19
  • 2021-12-03
  • 2021-05-09
相关资源
相似解决方案