欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Anaconda tensorflow 环境搭建

程序员文章站 2022-03-29 19:34:09
...

管理员模式
查看环境

conda info --envs
  1. 进入windows命令模式,创建tfenv环境,安装python3.6: conda create --name tfenv python=3.6

To activate this environment, use:
>activate tfenv
To deactivate an active environment, use:
> deactivate

装了tensorflow jupyter import失败

source activate tensorflow #**tensorflow环境
conda install ipython
conda install jupyter
jupyter notebook #重新打开jupyter notebook

https://blog.csdn.net/ebzxw/article/details/80701613 参考配置环境

https://blog.csdn.net/ITLearnHall/article/details/81708148