GPU是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中找到它们,但这给了我一个Python3版本的pip。
不知道接下来该做什么?
发布于 2020-09-21 22:04:54
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-ghttps://unix.stackexchange.com/questions/610607
复制相似问题