
- Jupyter 教程
- Jupyter - 首頁
- IPython
- IPython - 簡介
- IPython - 安裝
- IPython - 快速入門
- 執行和編輯 Python 指令碼
- IPython - 歷史命令
- IPython - 系統命令
- IPython - 命令列選項
- 動態物件自省
- IPython - IO 快取
- 設定 IPython 為預設 Python 環境
- 匯入 Python Shell 程式碼
- IPython - 嵌入 IPython
- IPython - 魔術命令
- Jupyter
- Jupyter 專案 - 概述
- Jupyter Notebook - 簡介
- 線上使用 Jupyter
- 安裝和入門
- Jupyter Notebook - 儀表盤
- Jupyter Notebook - 使用者介面
- Jupyter Notebook - 單元格型別
- Jupyter Notebook - 編輯
- Jupyter Notebook - Markdown 單元格
- 單元格魔法函式
- Jupyter Notebook - 繪圖
- 轉換 Notebook
- Jupyter Notebook - IPyWidgets
- QtConsole
- QtConsole - 快速入門
- QtConsole - 多行編輯
- QtConsole - 內聯圖形
- QtConsole - 儲存為 Html
- QtConsole - 多個控制檯
- 連線到 Jupyter Notebook
- 使用 github 和 nbviewer
- JupyterLab
- JupyterLab - 概述
- 安裝和入門
- JupyterLab - 介面
- JupyterLab - 安裝 R 核心
- Jupyter 資源
- Jupyter - 快速指南
- Jupyter - 有用資源
- Jupyter - 討論
IPython - 安裝
Anaconda Python 發行版預設包含 IPython。它可以從 Anaconda 的下載頁面下載 www.anaconda.com/download/ 此連結提供了適用於所有主要作業系統(Windows、MacOS 和 Linux)和架構(32 位和 64 位)的二進位制檔案。
要在標準 Python 安裝中單獨安裝 IPython,可以使用以下 pip 命令:
pip3 install ipython
IPython 內部使用以下軟體包:
序號 | IPython 依賴項和功能 |
---|---|
1 | colorama 用於從 Python 列印彩色終端文字的跨平臺 API |
2 | jedi Python 的自動完成工具 |
3 | pickleshare 具有併發支援的小型“shelve”式資料儲存 |
4 | prompt_toolkit 用於在 Python 中構建功能強大的互動式命令列的庫 |
5 | pygments 用 Python 編寫的語法高亮顯示包 |
6 | simplegeneric 簡單的泛型函式 |
7 | traitlets Python 應用程式的配置系統。 |
通常,所有依賴項都會自動安裝。否則,您可以使用 pip 單獨安裝它們。
廣告