在 Ubuntu 上安裝完 PDI 後啟動 spoon.sh
時提示安裝 libwebkitgtk-1.0-0
。由於 apt 官方源中不包含此軟體包,因此要新增該軟體包的源,以及源對應的 gpg 公鑰,然後再使用 apt 進行安裝。
WARNING: no libwebkitgtk-1.0 detected, some features will be unavailable
Consider installing the package with apt-get or yum.
e.g. 'sudo apt-get install libwebkitgtk-1.0-0'
新增新源
sudo vim /etc/apt/sources.list # 編輯 APT 源列表
在檔案中新增新的一行:
deb http://cz.archive.ubuntu.com/ubuntu bionic main universe
接下來新增 gpg 公鑰:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 40976EAF437D05B5
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32
最後更新 APT 索引:
sudo apt-get update
Chris Jean: Fix apt-get update “the following signatures couldn’t be verified because the public key is not available”
Pentaho Community: LIBWEBKITGTK-1.0-0 ON UBUNTU 22.04 LTS