当前位置:网站首页>深度学习环境配置
深度学习环境配置
2022-08-04 04:25:00 【Mr丶小煌】
安装anaconda
上官网下载符合自己系统的anaconda安装包anaconda官网:
望城后选择自己的路径安装,无脑下一步
安装tensorflow
conda install tensorflow
如果此过程中失败或者过慢,可以尝试以下方法:
# 使用清华的镜像源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels
测试tensorflow是否安装成功
import tensorflow as tf
sess = tf.Session()
a = tf.constant(1)
b = tf.constant(2)
print(sess.run(a+b))
边栏推荐
猜你喜欢
随机推荐
小程序 + 电商,玩转新零售
系统设计.如何设计一个秒杀系统(完整版 转)
张量篇-应用案例
How class only static allocation and dynamic allocation
[Ryerson emotional speaking/singing audiovisual dataset (RAVDESS)]
How to simplify the automation of modern e-procurement?
if,case,for,while
Y86. Chapter iv Prometheus giant monitoring system and the actual combat, Prometheus storage (17)
JVM笔记
2022支付宝C2C现金红包PHP源码DEMO/兼容苹果/安卓浏览器和扫码形式
中信证券网上开户怎么开的?安全吗?
Shell 函数
本周四晚19:00知识赋能第4期直播丨OpenHarmony智能家居项目之设备控制实现
结构体函数练习
转:管理是对可能性的热爱,管理者要有闯进未知的勇气
7-3 LVS+Keepalived集群叙述与部署
外卖店优先级
数组相关 内容 解析
2022年软件测试——精选金融银行面试真题
TL431的基本特性以及振荡电路









