【效果图】
walker喜欢的功能:代码补全,一个问号(?)给出注释,两个问号浏览代码。
【环境】
Windows7 x64,Python 3.5。
【步骤】
1、安装ipython。
|
1
|
pip3 install ipython -i https://pypi.doubanio.com/simple/
|
2、安装pyreadline。
|
1
|
pip3 install pyreadline -i https://pypi.doubanio.com/simple/
|
3、安装jupyter
|
1
|
pip3 install jupyter -i https://pypi.doubanio.com/simple/
|
4、安装pyqt。
|
1
|
pip3 install pyqt5 -i https://pypi.doubanio.com/simple/
|
5、启动。
|
1
|
jupyter qtconsole |
6、用bat文件避开黑框控制台。(过时)
|
1
2
3
4
5
6
|
@echo off
if "%1"=="h" goto begin
start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit :beginjupyter qtconsole |
*** 2016-07-11 ***
walker发现最新版本的组件直接启动 Python35\Scripts 下的 jupyter-qtconsole.exe 即可没有黑框。
相关阅读:
3、可选镜像站:https://pypi.doubanio.com/simple/
*** walker * 2016-06-24 ***
来源:https://yq.aliyun.com/articles/509822
data cleaning (data analysis 第一步) 1. detect and delete wrong data 1.find the wrong data and make sure the data indeed wrong, if so use del statement to delete it For instance, remove the row with the ...
(一)内置函数的简单使用 Using the Python type() function type() returns the data type of python objects str, int, float What does using type() reveal? str: when type()&nbs...
文章目录 matplotlib jupyter matplotlib Pyplot’s state-machine environment behaves similarly to MATLAB and should be most familiar to users with MATLAB experience. figure The whole figure. The figure...
将anaconda的环境添加到jupyter中 1.进入anaconda的一个环境 activation 环境名 2.安装 ipykernel pip install ipykernel 3.将本环境添加到jupyter中 python -m ipykernel install --user...
(1) String formatting methods the following methods are applied to string objects .capitalize() - capitalizes the first character of a string .lower() - all characters of a string are made l...
如何使用Jupyter Notebook (先下载并安装配置好Jupyter Notebook) 1、点击Jupyter Notebook软件。 2、跳出一个命令行窗口。 3、稍等一会儿后,会跳出Jupyter Notebook的网页,然后点击右上角new,选择Python[default](默认python)。 4、然后会出现如下的编辑页面。 5、然后就可以在框中运行程序啦!按shift+ent...
环境:PowerDesigner 15.1 问题:生成数据库报表文件 解决: 当设计出数据库以后,有一份正规的DOC文件是很必要的,下面讲解如何生成报表。 1 新建立报表文件右键单击模型,选择New------->Report,弹出如下界面。 2 输入报表名称,选择报表模板。 3 拖拉需要显示的部分到报表输出选项。 4 修改输出选项的内容在内容上单击右键,选择Format,可以修改相应项目的...
废话不多说,因为工作关系,这次接触到蓝牙功能开发,下面是我第一次蓝牙开发的经验总结,对于将要从事蓝牙开发的人,或许有些帮助。 Android蓝牙分为传统蓝牙开发和ble蓝牙开发。下面就有小伙伴疑问了,我该学习哪个呢,其实不然,只要你学会其中一种开发模式,对于另外一种开发模式无师自通。还有,...
作者:李坤凤 本次任务完成时间:2019年2月15日 开发工具与关键技术:开发工具:SQL、.net,关键技术:JS、JavaScript、C#语言 完成模块功能:库存查询 一、 库存查询(可按:天、月查询) 点击导出进行Excel表格导出; 点击头部第一行的按钮分别跳到不同的页面; 点击操作按钮跳转其他页面,库存流水、库存分布、成本明细; 本月查询 3. 点击导出进行Excel导出 二、业务表相...
1 、什么是自动装配 (1)根据指定装配规则(属性名称或者属性类型),Spring 自动将匹配的属性值进行注入 (1)根据属性名称自动注入 <!--实现自动装配 bean 标签属性 autowire,配置自动装配 autowire 属性常用两个值: byName 根据属性名称注入 ,注入值 bean 的 id 值和类属性名称一样 byType 根据属性类型注入 --> &...
Is it possible to use XGBoost for multi-label classification? Now I use OneVsRestClassifier over GradientBoostingClassifier from sklearn. It works, but use only one core from my CPU. In my data I have...
I'm trying to get all the books regarding computer science from Pearson's website (starting from this url: https://www.pearson.com/us/higher-education/professional---career/computer-science/computer-s...
I have used a semaphore to restrict the number of threads accessing a function. I want the thread to be awakened next should be chosen by some priority which i will be giving,not by default way that s...
I am trying to run $ sudo su in the terminal of AWS Cloud9. I get prompted for the password for the ec2-user. Any ideas what this might be? Might be worth noting that prior to coming up against this i...
DAO-object gets from DB only limited count of objects. Only Clear - Build - Deploy can help. I have DB with connected by foreign keys entities. One of them is User. Other one - Book. Those entities ar...