python 在Windows上的python中获取CPU温度
时间: 2024-02-18 11:03:04 浏览: 187
得到windows下CPU频率
3星 · 编辑精心推荐
获取CPU温度需要借助第三方库,常用的有psutil和wmi,以下是使用psutil的示例代码:
```python
import psutil
def get_cpu_temp():
temp = psutil.sensors_temperatures()['coretemp'][0].current # 以coretemp为例,如果不是coretemp需要修改
return temp
if __name__ == '__main__':
temp = get_cpu_temp()
print(f'当前CPU温度为{temp}℃')
```
请确保已安装psutil库,可以使用pip进行安装:
```
pip install psutil
```
注意:不同的CPU可能有不同的传感器名称,如果上述代码无法正常工作,请根据实际情况修改代码。
阅读全文