
Python 3.9下Tensorflow的安装
打开Anaconda Prompt:
切换镜像(慢的话):
conda config --add channels mirrors.ustc.edu/anaconda/pkgs/free/ conda config --add channels mirrors.ustc.edu/anaconda/pkgs/main/切换后下载不了,切回默认源:
conda config --remove-key channels创建环境:
conda create -n Tensorflow pip Python=3.9激活tensorflow环境:
activate tensorflow用conda安装tensorflow:
conda install tensorflow-gpu=2.6.0测试安装是否成功:
import tensorflow as tf tfpat.v1.disable_eager_execution() #保证sess.run()能够正常运行 hello = tf.constant('hello,tensorflow') sess= tfpat.v1.Session()#版本2.0的函数 print(sess.run(hello))输出b’Hello, TensorFlow!'就成功!
安装jupyter:
//TODO
conda安装pytorch:传送门
👁️ 阅读量:0
© 版权声明:本文《Python 3.9下Tensorflow的安装》内容均为本站精心整理或网友自愿分享,如需转载请注明原文出处:https://www.zastudy.cn/wen/1686776964a337427.html。