IPython
- IPython - Magic Commands
- IPython - Embedding IPython
- Importing Python Shell Code
- Setting IPython as Default Python Environment
- IPython - IO Caching
- Dynamic Object Introspection
- IPython - Command Line Options
- IPython - System Commands
- IPython - History Command
- Running & Editing Python Script
- IPython - Getting Started
- IPython - Installation
- IPython - Introduction
Jupyter
- Jupyter Notebook - IPyWidgets
- Converting Notebooks
- Jupyter Notebook - Plotting
- Cell Magic Functions
- Jupyter Notebook - Markdown Cells
- Jupyter Notebook - Editing
- Jupyter Notebook - Types of Cells
- Jupyter Notebook - User Interface
- Jupyter Notebook - Dashboard
- Installation and Getting Started
- Working With Jupyter Online
- Jupyter Notebook - Introduction
- Project Jupyter - Overview
QtConsole
- Using github and nbviewer
- Connecting to Jupyter Notebook
- QtConsole - Multiple Consoles
- QtConsole - Save to Html
- QtConsole - Inline Graphics
- QtConsole - Multiline Editing
- QtConsole - Getting Started
JupyterLab
- JupyterLab - Installing R Kernel
- JupyterLab - Interface
- Installation & Getting Started
- JupyterLab - Overview
Jupyter Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Jupyter QtConsole - Getting Started
In this chapter, let us understand how to get started with QtConsole. This chapter will give you an overview about this software and explains its installation steps.
Overview
The Qt console is a GUI apppcation similar to IPython terminal. However, it provides a number of enhancements which are not available in text based IPython terminal. The enhance features are inpne figures, multi-pne editing with syntax highpghting, graphical calltips, etc. The Qt console can use any Jupyter kernel, default being IPython kernel.
Installation
Jupyter QtConsole is a part of Project Jupyter. Anaconda distribution is already having QTconsole apppcation in it. In order to install it inspanidually, use pip command as shown below −
pip3 install qtconsole
You can also use the conda command for this purpose −
conda install qtconsole
You can start Jupyter console from Anaconda navigator. To start it from the command pne, you should use the following command, either from the Windows command prompt or Anaconda prompt −
jupyter qtonsole
You get a terminal similar to IPython terminal with first In[] prompt. You can now execute any Python expression exactly pke we do in IPython terminal or Jupyter notebook
Advertisements