METADATA 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. Metadata-Version: 2.1
  2. Name: qtconsole
  3. Version: 4.7.5
  4. Summary: Jupyter Qt console
  5. Home-page: http://jupyter.org
  6. Author: Jupyter Development Team
  7. Author-email: jupyter@googlegroups.com
  8. Maintainer: Spyder Development Team
  9. License: BSD
  10. Keywords: Interactive,Interpreter,Shell
  11. Platform: Linux
  12. Platform: Mac OS X
  13. Platform: Windows
  14. Classifier: Intended Audience :: Developers
  15. Classifier: Intended Audience :: System Administrators
  16. Classifier: Intended Audience :: Science/Research
  17. Classifier: License :: OSI Approved :: BSD License
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2.7
  20. Classifier: Programming Language :: Python :: 3
  21. Classifier: Programming Language :: Python :: 3.5
  22. Classifier: Programming Language :: Python :: 3.6
  23. Classifier: Programming Language :: Python :: 3.7
  24. Description-Content-Type: text/markdown
  25. Requires-Dist: traitlets
  26. Requires-Dist: ipython-genutils
  27. Requires-Dist: jupyter-core
  28. Requires-Dist: jupyter-client (>=4.1)
  29. Requires-Dist: pygments
  30. Requires-Dist: ipykernel (>=4.1)
  31. Requires-Dist: qtpy
  32. Requires-Dist: pyzmq (>=17.1)
  33. Provides-Extra: doc
  34. Requires-Dist: Sphinx (>=1.3) ; extra == 'doc'
  35. Provides-Extra: test
  36. Requires-Dist: pytest ; extra == 'test'
  37. Requires-Dist: mock ; (python_version=="2.7") and extra == 'test'
  38. # Jupyter QtConsole
  39. [![Build Status](https://travis-ci.org/jupyter/qtconsole.svg?branch=master)](https://travis-ci.org/jupyter/qtconsole)
  40. [![Coverage Status](https://coveralls.io/repos/github/jupyter/qtconsole/badge.svg?branch=master)](https://coveralls.io/github/jupyter/qtconsole?branch=master)
  41. [![Documentation Status](https://readthedocs.org/projects/qtconsole/badge/?version=stable)](https://qtconsole.readthedocs.io/en/stable/)
  42. [![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
  43. A rich Qt-based console for working with Jupyter kernels,
  44. supporting rich media output, session export, and more.
  45. The Qtconsole is a very lightweight application that largely feels like a terminal, but
  46. provides a number of enhancements only possible in a GUI, such as inline
  47. figures, proper multiline editing with syntax highlighting, graphical calltips,
  48. and more.
  49. ![qtconsole](https://raw.githubusercontent.com/jupyter/qtconsole/master/docs/source/_images/qtconsole.png)
  50. ## Install Qtconsole
  51. The Qtconsole requires Python bindings for Qt, such as [PyQt5](http://www.riverbankcomputing.com/software/pyqt/intro),
  52. [PyQt4](https://www.riverbankcomputing.com/software/pyqt/download),
  53. or [PySide](http://pyside.github.io/docs/pyside).
  54. Although [pip](https://pypi.python.org/pypi/pip) and
  55. [conda](http://conda.pydata.org/docs) may be used to install the Qtconsole, conda
  56. is simpler to use since it automatically installs PyQt5. Alternatively,
  57. the Qtconsole installation with pip needs additional steps since pip doesn't install
  58. the Qt requirement.
  59. ### Install using conda
  60. To install:
  61. conda install qtconsole
  62. **Note:** If the Qtconsole is installed using conda, it will **automatically**
  63. install the Qt requirement as well.
  64. ### Install using pip
  65. To install:
  66. pip install qtconsole
  67. **Note:** Make sure that Qt is installed. Unfortunately, Qt is not
  68. installed when using pip. The next section gives instructions on doing it.
  69. ### Installing Qt (if needed)
  70. You can install PyQt5 with pip using the following command:
  71. pip install pyqt5
  72. or with a system package manager on Linux. For Windows, PyQt binary packages may be
  73. used.
  74. **Note:** Additional information about using a system package manager may be
  75. found in the [qtconsole documentation](https://qtconsole.readthedocs.io).
  76. More installation instructions for PyQt can be found in the [PyQt5 documentation](http://pyqt.sourceforge.net/Docs/PyQt5/installation.html) and [PyQt4 documentation](http://pyqt.sourceforge.net/Docs/PyQt4/installation.html)
  77. Source packages for Windows/Linux/MacOS can be found here: [PyQt5](https://www.riverbankcomputing.com/software/pyqt/download5) and [PyQt4](https://riverbankcomputing.com/software/pyqt/download).
  78. ## Usage
  79. To run the Qtconsole:
  80. jupyter qtconsole
  81. ## Resources
  82. - [Project Jupyter website](https://jupyter.org)
  83. - Documentation for the Qtconsole
  84. * [latest version](https://qtconsole.readthedocs.io/en/latest/) [[PDF](https://media.readthedocs.org/pdf/qtconsole/latest/qtconsole.pdf)]
  85. * [stable version](https://qtconsole.readthedocs.io/en/stable/) [[PDF](https://media.readthedocs.org/pdf/qtconsole/stable/qtconsole.pdf)]
  86. - [Documentation for Project Jupyter](https://jupyter.readthedocs.io/en/latest/index.html) [[PDF](https://media.readthedocs.org/pdf/jupyter/latest/jupyter.pdf)]
  87. - [Issues](https://github.com/jupyter/qtconsole/issues)
  88. - [Technical support - Jupyter Google Group](https://groups.google.com/forum/#!forum/jupyter)