0

我试图使用 node.js 中的系统信息获取 CPU 温度,但在输出中获取空值。我还在获取 cpu 信息之前安装了传感器

此应用程序在 AWS EC2 实例上运行

import si from 'systeminformation'
import { execSync } from 'child_process'

let output=execSync('sudo apt-get install lm-sensors')
const temperature = await si.cpuTemperature()
console.log(temperature)

输出:

{ main: null, cores: [], max: null, socket: [], chipset: null }
4

0 回答 0