Anaconda Jupyter软件安装TensorFlow教程

Posted 虎蔚智客工作室

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Anaconda Jupyter软件安装TensorFlow教程相关的知识,希望对你有一定的参考价值。

1. 创建虚拟环境

conda create --name tf python=3.7

为我的新项目在anaconda中创建一个虚拟环境,python版本为3.7。

查看

conda info --envs

*号代表现在激活的是base这个环境。

2. 激活新建的环境

conda activate tf

3. 安装TensorFlow

conda install tensorflow

安装最新版本的TensorFlow。

4. 安装Jupyter

conda install jupyter

5. 设置Kernel

这个后面会用到,需要设置kernel。

conda install ipykernel
python -m ipykernel install --user --name tf

6. 验证安装

以上是关于Anaconda Jupyter软件安装TensorFlow教程的主要内容,如果未能解决你的问题,请参考以下文章

Jupyter-1-安装Anaconda3及更改路径

Python·Win10通过Anaconda安装python和Jupyter(python2.7为例)

Python·Win10通过Anaconda安装python和Jupyter(python2.7为例)

Centos7安装Miniconda及配置jupyter

anaconda安装和jupyter的使用

anaconda使用jupyter 多个内核共用 添加自动补全插件