mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
9 lines
197 B
Python
9 lines
197 B
Python
from pip._internal.operations.freeze import freeze
|
|
|
|
# 获取已安装包的信息
|
|
installed_packages = freeze()
|
|
|
|
# 输出已安装包的信息
|
|
for package in installed_packages:
|
|
print(package)
|