zoukankan      html  css  js  c++  java
  • Python Installing Jupyter

    1. Jupyter说明
      jupyter notebook是一款网页版的Python编辑器组件,便于学习Python
    2. Jupyer安装
      yum -y install gcc gcc-c++ kernel-devel python-devel libxslt-devel libffi-devel openssl-devel
      yum -y install python-pip
      Python3:
      python3 -m pip install --upgrade pip
      python3 -m pip install jupyter
      python3 -m pip install -i https://mirrors.aliyun.com/pypi/simple/ ipykernel
      python2:
      python -m pip install --upgrade pip
      python -m pip install jupyter
    3. 启动
      mkdir notebook
      基础命令: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 
      python -m ipykernel install
      python3 -m ipykernel install
      检查
      jupyter-kernelspec list
    6. 后台运行jupyter
      nohup jupyter notebook > jupyter.log &

  • 相关阅读:
    Python 单向循环链表
    python 单向链表实现
    Python实现栈
    单进程-非阻塞服务器
    Nginx开发从入门到精通
    Spring入门第十五课
    Spring入门第十六课
    Spring入门第十四课
    Spring入门第十三课
    Spring入门第十二课
  • 原文地址:https://www.cnblogs.com/Mrhuangrui/p/8257674.html
Copyright © 2011-2022 走看看