之前於 Pi 3A+ 重灌 64 位元 Rasbian OS, 發現它不再內建 VNC 了, 新的遠端桌面我不會設定, ˋ這塊板子因此閒置了快半年. 最近我問 ChatGPT 才知道, Pi 3 A+ 記憶體才 512M, 建議不要灌較吃記憶體的 64 位元 OS, 這個周末終於有時間把它重灌回 2021 年版的 32 位元 Raspbian Buster, 作法參考 :
由於 Pi 3A+ 打算放在高雄家臥室的五斗櫃上, 因位於社區網路內網所以基本上不做伺服器用 (要的話只能使用 ngrok 聯外), 專門當網路爬蟲主機蒐集資料之用. 以下安裝指令使用較簡短的 pip3 install, 但官方建議使用 python3 -m pip install 語法.
1. 主機基本資訊 :
固定 IP : 192.168.50.235
Python 版本 : v3.7.3
2. 安裝爬蟲套件 :
pip3 install requests -U
pip3 install beautifulsoup4
pip3 install lxml
pip3 install html5lib
pip3 install selenium
pip3 install scrapy
requests 在 Buster 已預載, 故用 -U 提升至最新版. 其他各套件均可用 pip3 順利安裝.
3. 安裝 Web 套件 :
pip3 install flask -U
Flask 最高只能到 v2.2.25 (Buster 已預先安裝 Flask, 故加 -U 升版), Django/Streamlit/Gradio 因為 piwheels 檔案有 hash 問題無法安裝. 但 Django 3.2.25 可以在 swap 空間放大後下載編譯後安裝 :
pi@raspberrypi:~ $ python3 -m pip install Django==3.2.25 -i https://pypi.org/simple
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting Django==3.2.25
Downloading https://www.piwheels.org/simple/django/Django-3.2.25-py3-none-any.whl (7.9 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.9/7.9 MB 166.1 kB/s eta 0:00:00
Collecting asgiref<4,>=3.3.2 (from Django==3.2.25)
Downloading https://www.piwheels.org/simple/asgiref/asgiref-3.7.2-py3-none-any.whl (24 kB)
Requirement already satisfied: pytz in ./.local/lib/python3.7/site-packages (from Django==3.2.25) (2025.2)
Collecting sqlparse>=0.2.2 (from Django==3.2.25)
Downloading https://www.piwheels.org/simple/sqlparse/sqlparse-0.4.4-py3-none-any.whl (41 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.2/41.2 kB 18.3 kB/s eta 0:00:00
Requirement already satisfied: typing-extensions>=4 in ./.local/lib/python3.7/site-packages (from asgiref<4,>=3.3.2->Django==3.2.25) (4.7.1)
Installing collected packages: sqlparse, asgiref, Django
Successfully installed Django-3.2.25 asgiref-3.7.2 sqlparse-0.4.4
4. 安裝量化投資套件 :
pip3 install twstock
pip3 install mplfinance
pip3 install ta
pip3 install backtrader
新版 Yahoo Finance API 要求 yfinance 0.2.54 版以上, 否則下載資料會失敗, 雖然 yfiance 0.2.54 可直接成功安裝, 但匯入時會出現錯誤 (ImportError: cannot import name 'TypedDict' from 'typing'), 因為它所依賴的 TypedDict 模組要求 Python 3.10.
pi@raspberrypi:~ $ pip3 install yfinance==0.2.54
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting yfinance==0.2.54
Using cached https://archive1.piwheels.org/simple/yfinance/yfinance-0.2.54-py2.py3-none-any.whl (108 kB)
Requirement already satisfied: pandas>=1.3.0 in ./.local/lib/python3.7/site-packages (from yfinance==0.2.54) (1.3.5)
Requirement already satisfied: numpy>=1.16.5 in ./.local/lib/python3.7/site-packages (from yfinance==0.2.54) (1.21.6)
Requirement already satisfied: requests>=2.31 in ./.local/lib/python3.7/site-packages (from yfinance==0.2.54) (2.31.0)
Collecting multitasking>=0.0.7 (from yfinance==0.2.54)
Using cached multitasking-0.0.12.tar.gz (19 kB)
Preparing metadata (setup.py) ... done
Collecting platformdirs>=2.0.0 (from yfinance==0.2.54)
Using cached https://www.piwheels.org/simple/platformdirs/platformdirs-4.0.0-py3-none-any.whl (17 kB)
Requirement already satisfied: pytz>=2022.5 in ./.local/lib/python3.7/site-packages (from yfinance==0.2.54) (2025.2)
Collecting frozendict>=2.3.4 (from yfinance==0.2.54)
Using cached frozendict-2.4.6.tar.gz (316 kB)
Installing build dependencies ... done
Getting requirements to build wheel ... done
Installing backend dependencies ... done
Preparing metadata (pyproject.toml) ... done
Collecting peewee>=3.16.2 (from yfinance==0.2.54)
Using cached peewee-3.18.2.tar.gz (949 kB)
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing metadata (pyproject.toml) ... done
Collecting beautifulsoup4>=4.11.1 (from yfinance==0.2.54)
Using cached beautifulsoup4-4.13.5-py3-none-any.whl.metadata (3.8 kB)
Requirement already satisfied: soupsieve>1.2 in /usr/lib/python3/dist-packages (from beautifulsoup4>=4.11.1->yfinance==0.2.54) (1.8)
Requirement already satisfied: typing-extensions>=4.0.0 in ./.local/lib/python3.7/site-packages (from beautifulsoup4>=4.11.1->yfinance==0.2.54) (4.7.1)
Requirement already satisfied: python-dateutil>=2.7.3 in /usr/lib/python3/dist-packages (from pandas>=1.3.0->yfinance==0.2.54) (2.7.3)
Requirement already satisfied: charset-normalizer<4,>=2 in ./.local/lib/python3.7/site-packages (from requests>=2.31->yfinance==0.2.54) (3.4.3)
Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests>=2.31->yfinance==0.2.54) (2.6)
Requirement already satisfied: urllib3<3,>=1.21.1 in ./.local/lib/python3.7/site-packages (from requests>=2.31->yfinance==0.2.54) (2.0.7)
Requirement already satisfied: certifi>=2017.4.17 in ./.local/lib/python3.7/site-packages (from requests>=2.31->yfinance==0.2.54) (2025.8.3)
Downloading beautifulsoup4-4.13.5-py3-none-any.whl (105 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 105.1/105.1 kB 654.6 kB/s eta 0:00:00
Building wheels for collected packages: frozendict, multitasking, peewee
Building wheel for frozendict (pyproject.toml) ... done
Created wheel for frozendict: filename=frozendict-2.4.6-cp37-cp37m-linux_armv7l.whl size=57470 sha256=9b2210d095af4d70a973d8a32fc293dcc8aa3cdd9f9e31659efb798f806b20c2
Stored in directory: /home/pi/.cache/pip/wheels/c8/f9/b7/cafd86bd3d1ae09b709065c89975a6e7b0cabceba196ddf649
Building wheel for multitasking (setup.py) ... done
Created wheel for multitasking: filename=multitasking-0.0.12-py3-none-any.whl size=15548 sha256=f704269e27970cf28cd70efd44d03839ef5b207d5e731d92622119cf6f900468
Stored in directory: /home/pi/.cache/pip/wheels/07/85/7c/d829efa690ced9b50a4979a874a078ec70b28363007b1128d3
Building wheel for peewee (pyproject.toml) ... done
Created wheel for peewee: filename=peewee-3.18.2-py3-none-any.whl size=139022 sha256=abaafe5b230980afadd11d7e934eff424063bab842abff0cfee7b98198d59d9f
Stored in directory: /home/pi/.cache/pip/wheels/c1/bc/e6/1ba6791a7d18830aa1ccc848d9ec73433d72f34dd91954193b
Successfully built frozendict multitasking peewee
Installing collected packages: peewee, multitasking, platformdirs, frozendict, beautifulsoup4, yfinance
Successfully installed beautifulsoup4-4.13.5 frozendict-2.4.6 multitasking-0.0.12 peewee-3.18.2 platformdirs-4.0.0 yfinance-0.2.54
yfinance 0.2.54 安裝沒問題, 但匯入時會出現錯誤.
twstock 則可順利安裝 :
pi@raspberrypi:~ $ python3 -m pip install twstock
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting twstock
Downloading https://archive1.piwheels.org/simple/twstock/twstock-1.4.0-py3-none-any.whl (626 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 626.1/626.1 kB 200.1 kB/s eta 0:00:00
Requirement already satisfied: requests in ./.local/lib/python3.7/site-packages (from twstock) (2.31.0)
Requirement already satisfied: charset-normalizer<4,>=2 in ./.local/lib/python3.7/site-packages (from requests->twstock) (3.4.3)
Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests->twstock) (2.6)
Requirement already satisfied: urllib3<3,>=1.21.1 in ./.local/lib/python3.7/site-packages (from requests->twstock) (2.0.7)
Requirement already satisfied: certifi>=2017.4.17 in ./.local/lib/python3.7/site-packages (from requests->twstock) (2025.8.3)
Installing collected packages: twstock
Successfully installed twstock-1.4.0
mplfinance 也是可以順利安裝 :
pi@raspberrypi:~ $ python3 -m pip install mplfinance
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting mplfinance
Downloading https://www.piwheels.org/simple/mplfinance/mplfinance-0.12.10b0-py3-none-any.whl (75 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.0/75.0 kB 75.9 kB/s eta 0:00:00
Requirement already satisfied: matplotlib in ./.local/lib/python3.7/site-packages (from mplfinance) (3.5.3)
Requirement already satisfied: pandas in ./.local/lib/python3.7/site-packages (from mplfinance) (1.3.5)
Requirement already satisfied: cycler>=0.10 in /usr/lib/python3/dist-packages (from matplotlib->mplfinance) (0.10.0)
Requirement already satisfied: fonttools>=4.22.0 in ./.local/lib/python3.7/site-packages (from matplotlib->mplfinance) (4.38.0)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/lib/python3/dist-packages (from matplotlib->mplfinance) (1.0.1)
Requirement already satisfied: numpy>=1.17 in ./.local/lib/python3.7/site-packages (from matplotlib->mplfinance) (1.21.6)
Requirement already satisfied: packaging>=20.0 in ./.local/lib/python3.7/site-packages (from matplotlib->mplfinance) (24.0)
Requirement already satisfied: pillow>=6.2.0 in ./.local/lib/python3.7/site-packages (from matplotlib->mplfinance) (9.5.0)
Requirement already satisfied: pyparsing>=2.2.1 in ./.local/lib/python3.7/site-packages (from matplotlib->mplfinance) (3.1.4)
Requirement already satisfied: python-dateutil>=2.7 in /usr/lib/python3/dist-packages (from matplotlib->mplfinance) (2.7.3)
Requirement already satisfied: pytz>=2017.3 in ./.local/lib/python3.7/site-packages (from pandas->mplfinance) (2025.2)
Installing collected packages: mplfinance
Successfully installed mplfinance-0.12.10b0
技術分析套件 ta 也是可以直接用 pip3 安裝 :
pi@raspberrypi:~ $ pip3 install ta
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting ta
Downloading https://www.piwheels.org/simple/ta/ta-0.11.0-py3-none-any.whl (29 kB)
Requirement already satisfied: numpy in ./.local/lib/python3.7/site-packages (from ta) (1.21.6)
Requirement already satisfied: pandas in ./.local/lib/python3.7/site-packages (from ta) (1.3.5)
Requirement already satisfied: python-dateutil>=2.7.3 in /usr/lib/python3/dist-packages (from pandas->ta) (2.7.3)
Requirement already satisfied: pytz>=2017.3 in ./.local/lib/python3.7/site-packages (from pandas->ta) (2025.2)
Installing collected packages: ta
Successfully installed ta-0.11.0
老牌技術分析套件 Ta-Lib 要用 wget 下載原始碼自行編譯後再用 pip3 安裝, 參考 :
但是編譯失敗只好放棄.
另外, pyfolio 與 pyfolio_reloaded 都無法在 Python 3.7 安裝了.
5. 安裝 DS & ML 套件 :
pip3 install pandas
pip3 install seaborn
這些模組若直接用 pip3 install 安裝都會因為 piwheels 檔案有 hash 問題而出現錯誤. 其中 Pandas 是根本套件, 只要安裝好 Pandas 並將 Matplotlib 提升至 3.5.3 版, Seaborn 就可以順利安裝了. Bokeh, Plotly, Scikit-learn 目前均要求 Python 3.10, 所以都無法安裝 (有 Seaborn 就好).
Pandas 可用 wget 直接下載 whl 檔在本機安裝, Python 3.7 能安裝的 Pandas 版本最高為 1.3.5 :
pi@raspberrypi:~ $ wget https://www.piwheels.org/simple/pandas/pandas-1.3.5-cp37-cp37m-linux_armv7l.whl
python3 -m pip install pandas-1.3.5-cp37-cp37m-linux_armv7l.whl
pi@raspberrypi:~ $ python3 -m pip install pandas-1.3.5-cp37-cp37m-linux_armv7l.whl
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Processing ./pandas-1.3.5-cp37-cp37m-linux_armv7l.whl
Requirement already satisfied: python-dateutil>=2.7.3 in /usr/lib/python3/dist-packages (from pandas==1.3.5) (2.7.3)
Collecting pytz>=2017.3 (from pandas==1.3.5)
Downloading https://www.piwheels.org/simple/pytz/pytz-2025.2-py3-none-any.whl (509 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 509.2/509.2 kB 101.1 kB/s eta 0:00:00
Collecting numpy>=1.17.3 (from pandas==1.3.5)
Using cached numpy-1.21.6.zip (10.3 MB)
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: numpy
Building wheel for numpy (pyproject.toml) ... done
Created wheel for numpy: filename=numpy-1.21.6-cp37-cp37m-linux_armv7l.whl size=15871822 sha256=886b276477561310751f08d175811ca857420c0249da7c2d492caeb998f2edeb
Stored in directory: /home/pi/.cache/pip/wheels/4e/7e/9e/0fde042ccff2493994076dac9c3fbd78feb444c3bd94eb386a
Successfully built numpy
Installing collected packages: pytz, numpy, pandas
Successfully installed numpy-1.21.6 pandas-1.3.5 pytz-2025.2
因為安裝 Seaborn 需要 Matplotlib 3.5.3 版, 但此版 Matplotlib 同樣因 hash 問題無法直接用 pip 安裝, 故用 wget 直接下載 whl 檔 :
pi@raspberrypi:~ $ wget https://www.piwheels.org/simple/matplotlib/matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl
--2025-08-25 16:05:54-- https://www.piwheels.org/simple/matplotlib/matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl
正在查找主機 www.piwheels.org (www.piwheels.org)... 46.235.225.189, 93.93.129.174, 2a00:1098:0:80:1000:3b:1:1, ...
正在連接 www.piwheels.org (www.piwheels.org)|46.235.225.189|:443... 連上了。
已送出 HTTP 要求,正在等候回應... 200 OK
長度: 8868051 (8.5M)
儲存到:`matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl'
matplotlib-3.5.3-cp 100%[+++++++++++++++++++>] 8.46M 189KB/s 於 2.3s
2025-08-25 16:07:00 (189 KB/s) - 已儲存 `matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl' [8868051/8868051]
本地安裝 Matplotlib :
pi@raspberrypi:~ $ python3 -m pip install matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Processing ./matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl
Requirement already satisfied: cycler>=0.10 in /usr/lib/python3/dist-packages (from matplotlib==3.5.3) (0.10.0)
Collecting fonttools>=4.22.0 (from matplotlib==3.5.3)
Downloading https://www.piwheels.org/simple/fonttools/fonttools-4.38.0-cp37-cp37m-linux_armv7l.whl (1.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 181.0 kB/s eta 0:00:00
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/lib/python3/dist-packages (from matplotlib==3.5.3) (1.0.1)
Requirement already satisfied: numpy>=1.17 in ./.local/lib/python3.7/site-packages (from matplotlib==3.5.3) (1.21.6)
Requirement already satisfied: packaging>=20.0 in ./.local/lib/python3.7/site-packages (from matplotlib==3.5.3) (24.0)
Collecting pillow>=6.2.0 (from matplotlib==3.5.3)
Downloading https://www.piwheels.org/simple/pillow/Pillow-9.5.0-cp37-cp37m-linux_armv7l.whl (820 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 820.4/820.4 kB 101.7 kB/s eta 0:00:00
Collecting pyparsing>=2.2.1 (from matplotlib==3.5.3)
Downloading https://www.piwheels.org/simple/pyparsing/pyparsing-3.1.4-py3-none-any.whl (104 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.1/104.1 kB 115.7 kB/s eta 0:00:00
Requirement already satisfied: python-dateutil>=2.7 in /usr/lib/python3/dist-packages (from matplotlib==3.5.3) (2.7.3)
Installing collected packages: pyparsing, pillow, fonttools, matplotlib
Successfully installed fonttools-4.38.0 matplotlib-3.5.3 pillow-9.5.0 pyparsing-3.1.4
只要 Pandas 與 Matplotlib 安裝好, 那 Seaborn 就可以直接用 piwheels 安裝了 :
pi@raspberrypi:~ $ python3 -m pip install seaborn
Defaulting to user installation because normal site-packages is not writeable
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting seaborn
Using cached https://www.piwheels.org/simple/seaborn/seaborn-0.12.2-py3-none-any.whl (293 kB)
Requirement already satisfied: numpy!=1.24.0,>=1.17 in ./.local/lib/python3.7/site-packages (from seaborn) (1.21.6)
Requirement already satisfied: pandas>=0.25 in ./.local/lib/python3.7/site-packages (from seaborn) (1.3.5)
Requirement already satisfied: matplotlib!=3.6.1,>=3.1 in ./.local/lib/python3.7/site-packages (from seaborn) (3.5.3)
Requirement already satisfied: typing_extensions in ./.local/lib/python3.7/site-packages (from seaborn) (4.7.1)
Requirement already satisfied: cycler>=0.10 in /usr/lib/python3/dist-packages (from matplotlib!=3.6.1,>=3.1->seaborn) (0.10.0)
Requirement already satisfied: fonttools>=4.22.0 in ./.local/lib/python3.7/site-packages (from matplotlib!=3.6.1,>=3.1->seaborn) (4.38.0)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/lib/python3/dist-packages (from matplotlib!=3.6.1,>=3.1->seaborn) (1.0.1)
Requirement already satisfied: packaging>=20.0 in ./.local/lib/python3.7/site-packages (from matplotlib!=3.6.1,>=3.1->seaborn) (24.0)
Requirement already satisfied: pillow>=6.2.0 in ./.local/lib/python3.7/site-packages (from matplotlib!=3.6.1,>=3.1->seaborn) (9.5.0)
Requirement already satisfied: pyparsing>=2.2.1 in ./.local/lib/python3.7/site-packages (from matplotlib!=3.6.1,>=3.1->seaborn) (3.1.4)
Requirement already satisfied: python-dateutil>=2.7 in /usr/lib/python3/dist-packages (from matplotlib!=3.6.1,>=3.1->seaborn) (2.7.3)
Requirement already satisfied: pytz>=2017.3 in ./.local/lib/python3.7/site-packages (from pandas>=0.25->seaborn) (2025.2)
Installing collected packages: seaborn
Successfully installed seaborn-0.12.2
這樣需要的套件大概就裝好了, 顯示目前已安裝套件列表 :
pi@raspberrypi:~ $ pip3 list
Package Version
------------------ -----------
appdirs 1.4.3
asgiref 3.7.2
asn1crypto 0.24.0
astroid 2.1.0
asttokens 1.1.13
attrs 24.2.0
Automat 22.10.0
automationhat 0.2.0
backtrader 1.9.78.123
beautifulsoup4 4.13.5
blinker 1.4
blinkt 0.1.2
buttonshim 0.0.2
Cap1xxx 0.1.3
certifi 2025.8.3
cffi 1.15.1
chardet 3.0.4
charset-normalizer 3.4.3
click 8.1.8
colorama 0.3.7
colorzero 1.1
constantly 15.1.0
cookies 2.2.1
cryptography 45.0.6
cssselect 1.2.0
cupshelpers 1.0
cycler 0.10.0
decorator 4.3.0
Django 3.2.25
docutils 0.14
drumhat 0.1.0
entrypoints 0.3
envirophat 1.0.0
et-xmlfile 1.1.0
exceptiongroup 1.3.0
ExplorerHAT 0.4.2
filelock 3.12.2
Flask 2.2.5
fonttools 4.38.0
fourletterphat 0.1.0
frozendict 2.4.6
gpiozero 1.5.1
guizero 0.6.0
h11 0.14.0
html5lib 1.1
hyperlink 21.0.0
idna 2.6
importlib-metadata 6.7.0
incremental 22.10.0
ipykernel 4.9.0
ipython 5.8.0
ipython_genutils 0.2.0
isort 4.3.4
itemadapter 0.8.0
itemloaders 1.1.0
itsdangerous 2.1.2
jedi 0.13.2
Jinja2 3.1.6
jmespath 1.0.1
jupyter-client 5.2.3
jupyter-core 4.4.0
keyring 17.1.1
keyrings.alt 3.1.1
kiwisolver 1.0.1
lazy-object-proxy 1.3.1
logilab-common 1.4.2
lxml 4.3.2
MarkupSafe 2.1.5
matplotlib 3.5.3
mccabe 0.6.1
microdotphat 0.2.1
mote 0.0.4
motephat 0.0.3
mplfinance 0.12.10b0
multitasking 0.0.12
mypy 0.670
mypy-extensions 0.4.1
nudatus 0.0.4
numpy 1.21.6
oauthlib 2.1.0
olefile 0.46
openpyxl 3.1.3
outcome 1.3.0.post0
packaging 24.0
pandas 1.3.5
pantilthat 0.0.7
parsel 1.8.1
parso 0.3.1
peewee 3.18.2
pexpect 4.6.0
pgzero 1.2
phatbeat 0.1.1
pianohat 0.1.0
picamera 1.13
pickleshare 0.7.5
picraft 1.0
piglow 1.2.5
pigpio 1.78
Pillow 9.5.0
pip 24.0
platformdirs 4.0.0
prompt-toolkit 1.0.15
Protego 0.3.0
psutil 5.5.1
pyasn1 0.5.1
pyasn1-modules 0.3.0
pycairo 1.16.2
pycodestyle 2.4.0
pycparser 2.21
pycrypto 2.6.1
pycups 1.9.73
PyDispatcher 2.0.7
pyflakes 2.0.0
pygame 1.9.4.post1
Pygments 2.3.1
PyGObject 3.30.4
pyinotify 0.9.6
PyJWT 1.7.0
pylint 2.2.2
pyOpenSSL 25.1.0
pyparsing 3.1.4
pyserial 3.4
pysmbc 1.0.15.6
PySocks 1.7.1
python-apt 1.8.4.3
python-dateutil 2.7.3
pytz 2025.2
pyxdg 0.25
pyzmq 17.1.2
qtconsole 4.3.1
queuelib 1.6.2
rainbowhat 0.1.0
reportlab 3.5.13
requests 2.31.0
requests-file 2.1.0
requests-oauthlib 1.0.0
responses 0.9.0
roman 2.0.0
RPi.GPIO 0.7.0
RTIMULib 7.2.1
Scrapy 2.9.0
scrollphat 0.0.7
scrollphathd 1.2.1
seaborn 0.12.2
SecretStorage 2.3.1
selenium 4.16.0
semver 2.0.1
Send2Trash 1.5.0
sense-emu 1.1
sense-hat 2.2.0
service-identity 21.1.0
setuptools 68.0.0
simplegeneric 0.8.1
simplejson 3.16.0
six 1.12.0
skywriter 0.0.7
sn3218 1.2.7
sniffio 1.3.1
sortedcontainers 2.4.0
soupsieve 1.8
spidev 3.4
sqlparse 0.4.4
ssh-import-id 5.7
ta 0.11.0
thonny 3.3.6
tldextract 4.0.0
tornado 5.1.1
touchphat 0.0.1
traitlets 4.3.2
trio 0.22.2
trio-websocket 0.11.1
Twisted 23.8.0
twstock 1.4.0
twython 3.7.0
typed-ast 1.3.1
typing_extensions 4.7.1
uflash 1.2.4
unicornhathd 0.0.4
urllib3 2.0.7
w3lib 2.1.2
wcwidth 0.1.7
webencodings 0.5.1
Werkzeug 2.2.3
wheel 0.42.0
wrapt 1.10.11
wsproto 1.2.0
yfinance 0.2.54
zipp 3.15.0
zope.interface 6.4.post2
注意, yfinance 雖然成功安裝但無法使用.
沒有留言 :
張貼留言