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 &

  • 相关阅读:
    一维数组
    do while循环(熟悉)
    while循环的概念和使用
    break关键字
    continue关键字
    for循环的概念与使用
    switchcase分支结构
    if else if else分支结构
    关于scanf()读取与返回值和回车键的问题
    WCF通过IIS寄宿服务
  • 原文地址:https://www.cnblogs.com/Mrhuangrui/p/8257674.html
Copyright © 2011-2022 走看看