1. 程式人生 > >Python---virtualenv + Tensorflow + jupyter notebook

Python---virtualenv + Tensorflow + jupyter notebook

pip3 caf span caffe 虛擬 pro orf pre ipy

  一、ubuntu系統下安裝完caffe後,安裝 jupyter notebook。

在終端中執行,安裝指令:

sudo pip install jupyter 

安裝完成後運行 notebook :

jupyter notebook 

ipython notebook 

二、ubuntu系統下,使用virtualenv安裝完tensorfow後,安裝 jupyter notebook。

主要步驟:

  1. 進入虛擬環境

    source myproject/bin/activate

  2. 安裝 IPykernel
  1. < python2 >
  2. pip install ipykernel
  3. < python3 >
  4. pip3 install ipykernel
  1. 將 Virtualenv 加入IPykernel
  1. < python2 >
  2. python2 -m ipykernel install --user --name=myproject
  3. < python3 >
  4. python3 -m ipykernel install --user --name=myproject

4.

動jupyter notebook並更改kernel

Python---virtualenv + Tensorflow + jupyter notebook