Python---virtualenv + Tensorflow + jupyter notebook
阿新 • • 發佈:2018-09-05
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。
主要步驟:
- 進入虛擬環境
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