「Matplotlib」:修訂間差異

出自Gea-Suan Lin's Wiki
跳至導覽 跳至搜尋
Gslin留言 | 貢獻
Gslin留言 | 貢獻
第17行: 第17行:


== 範例 ==
== 範例 ==
執行<code>jupyter-qtconsole</code>後就可以開始使用[[Python]]介面,並且透過<code>plot</code>產生圖片:


<syntaxhighlight lang="python">
<syntaxhighlight lang="python">

於 2025年1月3日 (五) 05:42 的修訂

Matplotlib是一套Python寫的繪圖工具。

安裝

Ubuntu 22.04下,Python 3的版本是3.10,版本算是還可以,所以我使用系統的Python搭配pipx安裝[1]

pipx install --include-deps jupyterlab; pipx inject jupyterlab matplotlib numpy jupyter-console scipy simpy sympy arrow pandas tabulate isort black jupyterlab_code_formatter PyQt5 qtconsole drawSvg CairoSVG

這個安裝方式會發現不會把jupyter-qtconsole連結到.local/bin下面,所以需要自己指定完整路徑執行,或是用一個symbolic link放到$PATH搜的到的地方:

~/.local/pipx/venvs/jupyterlab/bin/jupyter-qtconsole
~/.local/share/pipx/venvs/jupyterlab/bin/jupyter-qtconsole

範例

執行jupyter-qtconsole後就可以開始使用Python介面,並且透過plot產生圖片:

import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])

參考資料

  1. pipx and Jupyter Qt console. 2022-03-28 [2023-05-19] (English). 

外部連結