码迷,mamicode.com
首页 > 编程语言 > 详细

Python Installing Jupyter

时间:2018-01-10 14:08:06      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:学习   strong   支持   div   token   body   ipy   list   book   

  1. Jupyter说明
    jupyter notebook是一款网页版的Python编辑器组件,便于学习Python
  2. Jupyer安装
    yum -y install python-pip
    Python3:
    python3 -m pip install --upgrade pip
    python3 -m pip install jupyter
    python2:
    python -m pip install --upgrade pip
    python -m pip install jupyter
  3. 启动
    基础命令:jupyter notebook
     jupyter notebook /data/notebook --allow-root --ip=127.0.0.1
  4. 使用
    浏览器打开
    http://127.0.0.1:8888/tree
    提示输入Token,输入窗口随机Token即可,点击右上角New新建项目即可
  5. Jupyer同时支持Python2和Python3
    pip install ipython notebook
    python3 -m pip install ipython notebook 
    python3 -m ipykernel install
    检查
    jupyter-kernelspec list

Python Installing Jupyter

标签:学习   strong   支持   div   token   body   ipy   list   book   

原文地址:https://www.cnblogs.com/Mrhuangrui/p/8257674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!