
jupyter notebook
XnCSD
这个作者很懒,什么都没留下…
展开
-
python 的 IDLE 无法连接以及 jupyter notebook 无法打开浏览器
python 的 IDLE 无法连接以及 jupyter notebook 无法打开浏览器问题描述win10 系统由于防火墙机制,安装 python 以及 anaconda 会出现如下错误: 1. 安装 python 后,打开 IDLE 出现错误,无法连接python解释器。错误信息为 IDLE’s subprocess didn’t make connection.Either ID原创 2018-01-13 11:34:22 · 3574 阅读 · 0 评论 -
ipywidgets 包实现 jupyter notebook 的控件交互
ipywidgets 包可以实现 jupyter notebook 笔记本的交互式控件操作。from ipywidgets import interactimport ipywidgets as widgets首先定义一个用于操作的函数:def f1(x): return 2*x使用 interact() 函数传入函数名及其参数即可实现交互式控件。 数值型参数...原创 2018-03-11 18:45:15 · 10375 阅读 · 1 评论