BIBLIOGRAPHY
“Jupyter/Qtconsole.” (2015) 2025. Project Jupyter. https://github.com/jupyter/qtconsole.
관련메타
History
- conda로는 설치 안될 것 같은데?
- 다른 것 말고 주피터 그 자체. 이맥스 빼고
jupyter/qtconsole
(“Jupyter/Qtconsole” [2015] 2025)
- Jupyter Qt Console
Windows tests Macos tests Linux tests Coverage Status Documentation Status Google Group
A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more.
The Qtconsole is a very lightweight application that largely feels like a terminal, but provides a number of enhancements only possible in a GUI, such as inline figures, proper multiline editing with syntax highlighting, graphical calltips, and more.
2025 APT에서 설치 및 이맥스 연동
주피터 설치 관련 APT 사용
sudo apt-get install jupyter
jupyter kernelspec list
sudo apt-get install jupyter-qtconsole
스크린샷
width=“80%” >
이맥스 연동
(defun my/jupyter-qtconsole ()
"Open Jupyter QtConsole, connected to a Jupyter kernel"
(interactive)
(start-process "jupyter-qtconsole" nil "setsid" "jupyter" "qtconsole" "--existing"
(file-name-nondirectory (my/select-jupyter-kernel))))