你好,我一直在尝试安装并运行 epsxe。但在启动时总是遇到这个问题。
/epsxe/epsxe: error while loading shared libraries: libgtk-1.2.so.0: cannot open shared object file: No such file or directory
我在网上搜索了帮助,并尝试安装了我遇到的所有东西。我试过了,apt-cache search libgtk1.2
结果出现了libgtk1.2-common
- GTK+ 库的通用文件
我也尝试过sudo apt-get install libgtk1.2
这
sudo apt-get install libgtk1.2
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libgtk1.2:i386 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
libgtk1.2-common
E: Package 'libgtk1.2:i386' has no installation candidate
因此,如果有人能帮助我完成需要做的事情,我将不胜感激
答案1
也许更好的办法是使用PCSX-重装上阵PPA 或pcsx2 的官方 ppa
为什么?原因如下:
libgtk-1.2
自 Ubuntu 10.04 起不可用。因此,您可以尝试编译该软件包,但在我的测试中,有些依赖项我无法安装,除非编译其他软件包。也许您有耐心:
安装一些软件包
sudo apt-get install checkinstall
下载、解压、编译并安装
cd
wget http://ftp.gnome.org/pub/gnome/sources/gtk+/1.2/gtk+-1.2.10.tar.gz
tar xf gtk+-1.2.10.tar.gz
cd gtk+-1.2.10
./configure
make
sudo checkinstall
在该./configure
步骤中您将看到缺失的包。