python psutil 温度
时间: 2023-11-11 11:00:36 浏览: 158
使用 psutil 库可以获取系统的各种信息,包括 CPU 温度。下面是获取 CPU 温度的示例代码:
```python
import psutil
# 获取 CPU 温度
temp = psutil.sensors_temperatures()['coretemp'][0].current
print(f"CPU 温度为 {temp} ℃")
```
需要注意的是,这个示例代码只适用于 Linux 系统,如果你使用的是 Windows 或 macOS,可能需要修改代码才能正常运行。
相关问题
python获取cpu温度
要使用Python获取CPU温度,有几种方法可以实现。一种方法是使用sensors库,这个库可以读取并计算多个CPU的平均温度,并在某个CPU温度大于75℃时发出警报。另一种方法是使用wmi库,这个库可以通过查询获取CPU的温度信息。还有一种方法是使用OpenHardwareMonitor库,这个库可以获取CPU温度并实时更新。
以下是使用sensors库的示例代码:
```python
# 需要安装sensors库
from time import sleep
import fileinput
import os
import re
while True:
# 使用sensors获取CPU温度,并写入文件
s = os.popen("sensors")
a = open('/home/sweetorange/桌面/cpu.txt', 'w')
a.write(s.read())
a.close()
<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [Python获取多核CPU温度 均值](https://blog.csdn.net/sweetorange_/article/details/127872708)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [《python》用psutil获取电脑CPU内存等参数信息](https://blog.csdn.net/linZinan_/article/details/128475798)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [使用python获取cpu温度](https://blog.csdn.net/king_of_puyang/article/details/129441306)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
python读取CPU温度
作为AI语言模型,我无法直接读取CPU温度,但是我可以提供一些Python的库和代码示例,帮助你读取CPU温度。
1. 使用psutil库:
psutil是一个跨平台的Python库,用于获取系统信息,包括CPU温度。
示例代码:
```python
import psutil
temp = psutil.sensors_temperatures()
print(temp['coretemp'][0].current)
```
2. 使用py-cpuinfo库:
py-cpuinfo是一个用于获取CPU信息的Python库,它可以返回CPU的型号、频率、架构等信息,也可以获取CPU温度。
示例代码:
```python
import cpuinfo
info = cpuinfo.get_cpu_info()
temp = info['hz_advertised_floating_point'][2]
print(temp)
```
需要注意的是,不同的操作系统和硬件平台可能需要使用不同的方法来获取CPU温度信息。在使用这些库时,需要根据自己的系统和硬件平台进行相应的调整。
阅读全文