Python 3.9下Tensorflow的安装

打开Anaconda Prompt:

 切换镜像(慢的话):

conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/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
tf.compat.v1.disable_eager_execution() #保证sess.run()能够正常运行
hello = tf.constant('hello,tensorflow')
sess= tf.compat.v1.Session()#版本2.0的函数
print(sess.run(hello))

输出b’Hello, TensorFlow!'就成功!

安装jupyter:

        //TODO

conda安装pytorch传送门

猜你喜欢

转载自blog.csdn.net/LearnToStick/article/details/127552743