Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有一种独立于平台的方式来获取 linux、windows、mac 的系统信息。我知道您可以使用平台模块来获取一些基本信息。我正在寻找更详细的信息,例如
我建议psutil为此使用库。并非您需要的所有东西都可用,但它是一个很好的起点。例如,要获取 CPU 计数,可以使用以下代码。
psutil
>>> import psutil >>> psutil.cpu_count() # Logical core 4 >>> psutil.cpu_count(logical=False) # Physical core 2