在Spyder中,你可以使用Python的pip
命令來查看已安裝的模塊。
import pip
def get_installed_packages():
installed_packages = pip.get_installed_distributions()
installed_packages_list = sorted(["%s==%s" % (i.key, i.version)
for i in installed_packages])
for package in installed_packages_list:
print(package)
get_installed_packages()
請注意,這需要你的系統中已經安裝了pip
。如果你還沒有安裝pip
,你可以按照以下步驟安裝:
pip
:python -m ensurepip --upgrade
pip
添加到系統路徑中。運行以下命令:pip install --upgrade pip
這樣,你就可以在Spyder中使用上述代碼來查看已安裝的模塊了。