Jupyter Notebook是用于科学数据分析的利器,JupyterHub可以在服务器环境下为多个用户托管Jupyter运行环境。本文将详细介绍如何使用Rancher安装JupyterHub来为数据科学和机器学习开发创建可扩展的工作区。
分类:
其他好文 时间:
2020-03-21 10:12:24
阅读次数:
115
jupyter notebook 无法打开.ipynb文件,也无法新建.ipynb文件,报错为【sqlite3. OperationalError: database is locked】 排查问题。 先关闭这个notebook,再用terminal重新打开一个新的notebook,查看termin ...
分类:
其他好文 时间:
2020-03-20 20:39:35
阅读次数:
435
当你进入jupyter notebook界面会发现 有pdf选项,点击发现错误,提示你没有安装tex,我是win10系统,决定安装MiKTeX。 1.下载两个必要文件 附上链接 https://miktex.org/ 下载好win版,顺便下载好配套的pandoc(不装的话后面可能会出现错误 http ...
分类:
其他好文 时间:
2020-03-20 12:24:16
阅读次数:
405
`jupyter notebook jupyter notebook github jupyter notebook`上实现: 1. 使用 浏览技术文档; 2. 将转换成.md格式的python代码在不用转换格式的情况下直接由 上打开并且运行代码; 3. 更加方便的由 看`github`下载的资料。 ...
分类:
其他好文 时间:
2020-03-19 22:03:18
阅读次数:
501
入门级: jupyter notebook --allow-root > jupyter.log 2>&1 & 进阶版: nohup jupyter notebook --allow-root > jupyter.log 2>&1 & 解释: 1. 用&让命令后台运行, 并把标准输出写入jupyte ...
分类:
其他好文 时间:
2020-03-18 09:45:10
阅读次数:
233
楔子 下面我们来进行高级图表的绘制,说是高级图表,其实也不算高级。以下代码在jupyter notebook上运行,先导入以下模块 ~~~python import plotly as py import plotly.graph_objs as go import numpy as np impo ...
分类:
其他好文 时间:
2020-03-17 17:55:57
阅读次数:
98
完整原文: "https://hongwan.xyz/archives/" 使用Jupyter可以在本地电脑直接新建和编辑linux服务器的代码,比如python和R,非常方便; 本机为:Win10 服务器:CentOS Linux release 7.3.1611 1.远程服务器安装Jupyter ...
分类:
其他好文 时间:
2020-03-17 14:15:38
阅读次数:
158
Run the following in a command prompt ~~~shell pip install jupyter_contrib_nbextensions && jupyter contrib nbextension install ~~~ Start up a Jupyter ...
分类:
其他好文 时间:
2020-03-14 10:51:10
阅读次数:
55
之前在自己博客上写了一个如何通过自建配置文件,让jupyter notebook可以调用conda虚拟环境的python解释器。今天介绍一种更加简单的方式,无需手动配置文件,利用ipykernel可以自动生成对应的配置文件,然后直接启动jupyter notebook即可,而且只需要在第一次使用的时 ...
分类:
编程语言 时间:
2020-03-09 18:18:53
阅读次数:
70
安装nbextensions可提高jupyter notebook效率,安装步骤如下: 1、pip 方式安装: (gluon) [root@localhost ~]# pip install jupyter_contrib_nbextensionsLooking in indexes: https: ...
分类:
其他好文 时间:
2020-03-09 00:53:34
阅读次数:
409