当前位置:网站首页>CONDA configures tensorflow1.14 environment
CONDA configures tensorflow1.14 environment
2022-07-20 01:04:00 【zoetu】
1. Creating a virtual environment
conda create -n tf1.14 python=3.7
2. Activate the environment
conda activate tf1.14
3. Install the specified version TensorFlow
conda install tensorflow-gpu=1.14
tips:
“=”: Add “=” On behalf of automatically installing the latest updated version of the large version of the software package , Such as “tensorflow=1.13” It will be installed automatically tensorflow edition 1.13 The latest version of , namely “1.13.” Decimal point followed by the latest number
“==”: Add after the package “==” On behalf of installing the specified version of the package , The version number after the double equal sign must be written completely , Such as “tensorflow==1.13.1” Is to install 1.13.1 Version of tensorflow
notes : about 1.15 And earlier ,CPU and GPU Packages are separate :
CPU editionconda install tensorflow==1.14
4. Test the installation for success
python
import tensorflow as tf
tf._version_
Installation successful !
verification gpu Is it available
tf.test.is_gpu_available()
Uninstall environment command
conda uninstall -n tf --all
yes
see conda Environmental Science
conda info -e
Reference tutorial :
- Installation tutorial :https://zhuanlan.zhihu.com/p/84568790
- tensorflow Official website :https://tensorflow.google.cn/install/gpu
边栏推荐
- Brain crack: a strange data loss
- “小镇做题家”为何被官媒嘲讽?
- 电商库存系统的防超卖和高并发扣减方案
- Win11无法识别ADB如何设置?
- How to prevent your jar from being decompiled?
- The basic operation of data tables in MySQL is very difficult. This experiment will take you through it from the beginning
- 开户对年龄有限制么?请问手机开户股票开户安全吗?
- apache编译安装
- OCR ticket recognition based on OpenCV (1)
- 实现:el-table分页勾选数据并记忆
猜你喜欢
随机推荐
基于opencv 的OCR小票识别(1)
chrome安装crx插件
nvm(本地nodejs多版本管理工具)
【tensorboard】解决ValueError: Duplicate plugins for name projector
在线会议中人脸面部轮廓图像提取(一)——前言
创原会丨携手50+云原生企业,共探跨越数字化鸿沟新模式
口袋妖怪卡片进化jsjs特效
Quatre exemples simples pour améliorer l'expérience utilisateur grâce à l'enregistrement du comportement de l'utilisateur
Four simple examples teach you how to improve user experience through user behavior records
Guys, can Oracle CDC collect materialized views of oracle?
每周招聘|去哪儿网(Qunar)DBA招聘、薪资面议,平台无限、能力至上!
3D激光SLAM:ALOAM---gazebo仿真测试场景搭建
2022爱分析・银行数字化实践报告
[tensorboard] solve valueerror: duplicate plugins for name projector
Live broadcast preview | PostgreSQL kernel Interpretation Series Lecture 4: PostgreSQL storage management (II)
使用Dom4j解析XML文件
3D laser slam:aloam---gazebo simulation test scenario construction
Win11玩游戏延迟高的解决办法
MySQL different table field sorting index failure?
第2周 具有神经网络思维的Logistic回归—识别猫的简单神经网络