Skip to content

如何在 Fedora 上安裝 fcitx5 mcbopomofo

Lukhnos Liu edited this page Feb 27, 2024 · 12 revisions

感謝 @jimchen5209 提供的安裝說明

在 Fedora (包括 Fedora 37 及以上版本) 安裝小麥輸入法,方法跟 README 上的差不多,只差在相依安裝的方式不同。步驟如下:

  1. 安裝 fcitx5, CMake, 以及以下開發用模組:
sudo dnf install fcitx5 fcitx5-configtool fcitx5-devel \
                 cmake extra-cmake-modules gettext fmt-devel \
                 libicu-devel json-c-devel
  1. 然後在本專案的 git 目錄下執行以下指令:
mkdir -p build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug
make
sudo make install