在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中使用上述代码来查看已安装的模块了。