ubuntu下anaconda使用jupyter notebook加载tensorflowpytorch

Posted zxj9487

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下anaconda使用jupyter notebook加载tensorflowpytorch相关的知识,希望对你有一定的参考价值。

1.  安装完anaconda后,其环境会为我们在base(root)这个环境下配置jupyter notebook,而我们自己配置的TensorFlow环境下是没有自动配置这个工具的,所以我们需要自己在这个环境下配置jupyter notebook工具,具体操作如下:

1 conda activate tf   #首先激活自己的tensorflow环境,tf为我自己的环境名,注意更改 有的博客中 使用的是 source activate tf,
2 conda install ipython
3 conda install jupyter   #安装工具
4 jupyter notebook   #启动

2.  启动了notebook之后,导入 如下命令:

1 import tensorFlow as tf

  如果不报错,即表明成功!!!

3.  同理,安装pytorch

1 1 conda activate pytorch   #首先激活自己的pytorch环境,有的博客中 使用的是 source activate pytorch,
2 2 conda install ipython
3 3 conda install jupyter   #安装工具
4 4 jupyter notebook   #启动

4.  启动了notebook之后,导入 如下命令:

1 import torch

  如果不报错,即表明成功!!!

以上是关于ubuntu下anaconda使用jupyter notebook加载tensorflowpytorch的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 20.04 下Jupyter notebook配置

Linux(ubuntu)下安装anaconda(64位)并配置jupyter notebook远程访问

Ubuntu环境下Anaconda安装TensorFlow并配置Jupyter远程访问

如何使用 Jupyter Notebook (Anaconda3, Ubuntu) 运行 Spark

anaconda jupyter

在anaconda环境下搭建python3.5 + jupyter sparkR,scala,pyspark