最後活躍 10 months ago

這段程式碼用於檢查 Python 環境中是否安裝了 numpy 模組。 如果 numpy 已安裝,則輸出 "numpy is installed",否則輸出 "numpy is not installed"。

修訂 f648b0af5505e55c1e10dcb92f7b90e65f9bce68

check_numpy_installed.py 原始檔案
1from importlib.util import find_spec
2
3if find_spec("numpy") is not None:
4 print("numpy is installed")
5else:
6 print("numpy is not installed")
7