返回顶部
首页 > 资讯 > 后端开发 > Python >anaconda+tensorflow安装完整步骤【亲测可用】
  • 617
分享到

anaconda+tensorflow安装完整步骤【亲测可用】

tensorflowpython深度学习 2023-08-31 07:08:13 617人浏览 安东尼

Python 官方文档:入门教程 => 点击学习

摘要

anaconda+Tensorflow安装完整步骤 anaconda安装tensorflow1.安装anaconda2.下载windows版本进行下载并安装3.打开Anaconda Promp

anaconda+Tensorflow安装完整步骤

anaconda安装tensorflow

1.安装anaconda

官网下载anaconda(https://www.anaconda.com/products/distribution
在这里插入图片描述

2.下载windows版本进行下载并安装

在这里插入图片描述

3.打开Anaconda Prompt

在这里插入图片描述
(1)检测anaconda环境是否安装成功

conda --version

在这里插入图片描述
(2)检测目前安装了哪些环境变量:

conda info –-envs

在这里插入图片描述
(3) 在anaconda内安装一个配套的python并新建一个tensorflow的环境

conda create -n TF2 Python==3.9

(TF2是自己命名的)
然后输入y
在这里插入图片描述

4. 安装tensorflow

(1)使用activate TF2(与你刚刚新建的环境名称相同)命令打开刚刚新建的tensorflow环境

activate TF2

若退出tensorflow的环境:

deactivate

(2)输入命令

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow

在这里插入图片描述
在这里插入图片描述
5.测试

pythonimport tensorflow as tftf.__version__

在这里插入图片描述

PyCharm下载与安装

1.官网下载pycharm社区版

pycharm windows版本下载地址:Https://www.jetbrains.com/pycharm/download/#section=windows
在这里插入图片描述

2.PyCharm环境配置

在这里插入图片描述
在这里插入图片描述

3.测试

import tensorflow as tftensorflow_version = tf.__version__gpu_avilable = tf.test.is_gpu_available()print("tensorflow version: ", tensorflow_version,"\tGPU aviable:", gpu_avilable)a = tf.constant([1.0,2.0], name = 'a')b = tf.constant([1.0,2.0], name = 'b')result = tf.add(a,b,name='add')print(result)

结果:
在这里插入图片描述
在这里插入图片描述
若在acanoda里没安装成功tensorflow,则在pycharm里进行安装。
点击File-settings
在这里插入图片描述
在这里插入图片描述

来源地址:https://blog.csdn.net/fyfy96/article/details/128155222

--结束END--

本文标题: anaconda+tensorflow安装完整步骤【亲测可用】

本文链接: https://lsjlt.com/news/384633.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作