python psutil 温度
时间: 2023-11-11 21:00:36 浏览: 153
Python库 | psutil-1.1.3.win-amd64-py2.7.exe
使用 psutil 库可以获取系统的各种信息,包括 CPU 温度。下面是获取 CPU 温度的示例代码:
```python
import psutil
# 获取 CPU 温度
temp = psutil.sensors_temperatures()['coretemp'][0].current
print(f"CPU 温度为 {temp} ℃")
```
需要注意的是,这个示例代码只适用于 Linux 系统,如果你使用的是 Windows 或 macOS,可能需要修改代码才能正常运行。
阅读全文