admin管理员组

文章数量:1794759

Python 3.9下Tensorflow的安装

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:传送门

本文标签: Pythontensorflow