如何让 CPU-G 在 Debian 10 上运行?

如何让 CPU-G 在 Debian 10 上运行?

GPU-G 是 Windows 上 CPU-Z 的 Linux 替代品(显然),但我无法让它运行。

当我运行时python2 ./gpu-g出现以下错误

You need to have PyGTK 2.10.0, GTK.Glade and GTK+ 2.10.0 or higher
installed in your system in order to run CPU-G.

我尝试安装的pip目的是试图找到这些包,因为我无法使用 找到它们apt,但这给了我一个 python 3 版本的 pip。

不确定下一步要尝试什么?

答案1

CPU-G 是一个 python 3 应用程序。

运行它的说明发布在这里:https://github.com/atareao/cpu-g

简而言之:

sudo apt install libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0
pip3 install pycairo PyGObject psutil dbus-python
git clone https://github.com/atareao/cpu-g.git
cd cpu-g/bin
python3 cpu-g

相关内容