- Jupyter教程
- Jupyter - 主页
- Python
- IPython - 简介
- IPython - 安装
- IPython - 入门
- 运行和编辑 Python 脚本
- IPython - 历史命令
- IPython - 系统命令
- IPython - 命令行选项
- 动态对象自省
- IPython - IO 缓存
- 将 IPython 设置为默认 Python 环境
- 导入Python shell代码
- IPython - 嵌入 IPython
- IPython - 魔法命令
- 朱皮特
- Jupyter 项目 - 概述
- Jupyter Notebook - 简介
- 在线使用 Jupyter
- 安装和入门
- Jupyter Notebook - 仪表板
- Jupyter Notebook - 用户界面
- Jupyter Notebook - 单元类型
- Jupyter Notebook - 编辑
- Jupyter Notebook - Markdown 单元格
- 细胞魔法功能
- Jupyter Notebook - 绘图
- 转换笔记本
- Jupyter 笔记本 - IPyWidgets
- Qt控制台
- QtConsole - 入门
- QtConsole - 多行编辑
- QtConsole - 内联图形
- QtConsole - 保存到 Html
- QtConsole - 多个控制台
- 连接到 Jupyter 笔记本
- 使用 github 和 nbviewer
- Jupyter实验室
- JupyterLab - 概述
- 安装和入门
- JupyterLab - 界面
- JupyterLab - 安装 R 内核
- Jupyter 资源
- Jupyter - 快速指南
- Jupyter - 有用的资源
- Jupyter - 讨论
Jupyter QtConsole - 入门
在本章中,让我们了解如何开始使用 QtConsole。本章将向您概述该软件并解释其安装步骤。
概述
Qt 控制台是一个类似于 IPython 终端的 GUI 应用程序。但是,它提供了许多在基于文本的 IPython 终端中不可用的增强功能。增强功能包括内联数字、带语法突出显示的多行编辑、图形调用提示等。Qt 控制台可以使用任何 Jupyter 内核,默认为 IPython 内核。
安装
Jupyter QtConsole 是 Jupyter 项目的一部分。Anaconda 发行版中已经包含 QTconsole 应用程序。要单独安装它,请使用 pip 命令,如下所示 -
pip3 install qtconsole
您还可以使用 conda 命令来实现此目的 -
conda install qtconsole
您可以从 Anaconda 导航器启动 Jupyter 控制台。要从命令行启动它,您应该在 Windows 命令提示符或 Anaconda 提示符下使用以下命令 -
jupyter qtonsole
您将获得一个类似于 IPython 终端的终端,并带有第一个 In[] 提示符。您现在可以执行任何 Python 表达式,就像我们在 IPython 终端或 Jupyter Notebook 中所做的那样