zoukankan      html  css  js  c++  java
  • Python---virtualenv + Tensorflow + 安装jupyter notebook

      一、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
      例如:python -m ipykernel install --user --name=tensorflow  (环境名)

             4.启动jupyter notebook并更改kernel

     

     

  • 相关阅读:
    3288 积木大赛
    3284 疯狂的黄大神
    1531 山峰
    1018 单词接龙
    1432 总数统计
    1507 酒厂选址
    1063 合并果子
    几个sort不能过的题目
    poj 2245 Lotto
    求两圆相交面积模板
  • 原文地址:https://www.cnblogs.com/carle-09/p/9590395.html
Copyright © 2011-2022 走看看