Python---virtualenv + Tensorflow + jupyter notebook
Posted 烂笔头@WP
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python---virtualenv + Tensorflow + jupyter notebook相关的知识,希望对你有一定的参考价值。
一、ubuntu系统下安装完caffe后,安装 jupyter notebook。
在终端中执行,安装指令:
sudo pip install jupyter
安装完成后运行 notebook :
jupyter notebook
或
ipython notebook
二、ubuntu系统下,使用virtualenv安装完tensorfow后,安装 jupyter notebook。
主要步骤:
- 进入虚拟环境
source myproject/bin/activate
- 安装 IPykernel
-
< python2 >
-
pip install ipykernel
-
< python3 >
-
pip3 install ipykernel
- 将 Virtualenv 加入IPykernel
-
< python2 >
-
python2 -m ipykernel install --user --name=myproject
-
< python3 >
-
python3 -m ipykernel install --user --name=myproject
4.启动jupyter notebook并更改kernel
以上是关于Python---virtualenv + Tensorflow + jupyter notebook的主要内容,如果未能解决你的问题,请参考以下文章