インストールしようとしています。科学研究室Scientific Linux 7でパッケージの依存関係の問題が発生しました。私はUbuntuにある程度熟練していますが、Scientific Linuxやそのようなものについての経験はありません。 ScicosLabのウェブサイトから.rpmファイルをダウンロードし、yum localinstall scicoslab-gtk-4.4.1-1.sl6.x86_64.rpm
rootとして実行しました。エラーが発生します。
Error: Package: scicoslab-gtk-4.4.1-1.x86_64 (/scicoslab-gtk-4.4.1-1.sl6.x86_64)
Requires: libwebkit-1.0.so.2()(64bit)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
このパッケージをインストールしようとしましたがインストールできないようです...
答え1
これが私がすることです。 VirtualboxにScientific Linux 7.5を最小限にインストールしました。このパッケージをインストールしようとしましたが、同じエラーが発生しました。数回の検索の最後にこの問題を解決できました。
epelリポジトリをインストールしました。
yum install epel-release
このパッケージに必要な特定のwebkitgtk、libicu、libxcbのバージョンがここで見つかったので、Scientific Linux 6.10リポジトリを追加しました。
[root@scinlinux ~]# cat /etc/yum.repos.d/sci610.repo
[sci_6.10]
name=Scientific Linux 6.10 repo
baseurl=http://ftp.scientificlinux.org/linux/scientific/6.10/x86_64/os/
gpgcheck=0
[root@scinlinux ~]#
その後、問題なくパッケージがインストールされました。以下の出力は、epelとsci-6.10リポジトリからインポートされたパッケージを示しています。
[root@scinlinux ~]# yum install /tmp/scicoslab-gtk-4.4.1-1.sl6.x86_64.rpm
Examining /tmp/scicoslab-gtk-4.4.1-1.sl6.x86_64.rpm: scicoslab-gtk-4.4.1-1.x86_64
Marking /tmp/scicoslab-gtk-4.4.1-1.sl6.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package scicoslab-gtk.x86_64 0:4.4.1-1 will be installed
.
<snipped>
libicu x86_64 4.2.1-14.el6 sci_6.10 4.9 M
libxcb x86_64 1.12-4.el6 sci_6.10 179 k
vte x86_64 0.28.2-10.el7 epel 361 k
webkitgtk x86_64 1.4.3-9.el6_6 sci_6.10 6.3 M
以下の出力からSci_linux 7.5をインストールするときは、epelとsci_6.10以外のリポジトリがすでにインストールされていることに注意してください。
[root@scinlinux ~]# yum repolist
repo id repo name status
*epel/x86_64 Extra Packages for Enterprise Linux 7 - x86_64 12,756
repos/x86_64 Scientific Linux repos - x86_64 20
sci_6.10 Scientific Linux 6.10 repo 6,860
sl/x86_64 Scientific Linux 7x - x86_64 9,957
sl-extras/x86_64 Scientific Linux Extras - x86_64 1,066
sl-fastbugs/x86_64 Scientific Linux 7x - x86_64 - bugfix updates 1,013
sl-security/x86_64 Scientific Linux 7x - x86_64 - security updates 637
repolist: 32,309
[root@scinlinux ~]#