web-dev-qa-db-ja.com

Ubuntuにibus-typing-boosterをインストールします

Fedoraで ibus-typing-booster ソフトウェアを試しました。これはUbuntuで利用できますか?

これは本当に使いやすいソフトウェアです。


更新:

次の手順を使用してインストールしようとしました。しかし、エラーが発生しました:

wget https://fedorahosted.org/releases/i/b/ibus-typing-booster/ibus-typing-booster-1.2.11.tar.gz

./configure
make
Sudo make install

ibusバージョンについて文句を言う

checking for IBUS... no
configure: error: Package requirements (ibus-1.0 >= 1.1.0) were not met:

No package 'ibus-1.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables IBUS_CFLAGS
and IBUS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

しかし、私は最新のibusを持っています

$ ibus version
IBus 1.5.5

アップデート2:

libibusと呼ばれるもう1つのパッケージを追加した後、続行できます。

Sudo apt-get install libibus-1.0-dev

しかし、インストール中にエラーが発生します:

ubuntu@ubuntu:~/ibus-typing-booster-1.2.7$ Sudo make install
Making install in engine
make[1]: Entering directory '/home/ubuntu/ibus-typing-booster-1.2.7/engine'
make[2]: Entering directory '/home/ubuntu/ibus-typing-booster-1.2.7/engine'
 /bin/mkdir -p '/usr/local/libexec'
 /usr/bin/install -c ibus-engine-typing-booster '/usr/local/libexec'
 /bin/mkdir -p '/usr/local/share/ibus/component'
 /usr/bin/install -c -m 644 typing-booster.xml '/usr/local/share/ibus/component'
 /bin/mkdir -p '/usr/local/share/ibus-typing-booster/engine'
 /usr/bin/install -c -m 644 factory.py main.py hunspell_table.py hunspell_suggest.py tabsqlitedb.py itb_util.py '/usr/local/share/ibus-typing-booster/engine'
../py-compile: Missing argument to --destdir.
Makefile:400: recipe for target 'install-engine_tablePYTHON' failed
make[2]: *** [install-engine_tablePYTHON] Error 1
make[2]: Leaving directory '/home/ubuntu/ibus-typing-booster-1.2.7/engine'
Makefile:539: recipe for target 'install-am' failed
make[1]: *** [install-am] Error 2
make[1]: Leaving directory '/home/ubuntu/ibus-typing-booster-1.2.7/engine'
Makefile:482: recipe for target 'install-recursive' failed
make: *** [install-recursive] Error 1
2
shantanuo

Ubuntuにインストールするには、サイトの開発セクションに記載されている指示に従う必要があります。 ブースター開発の入力

ここで短いリマインダーとして、

./configure --prefix=/usr --libexecdir=/usr/lib/ibus
make
make check # optional
make install

必須:

  • ibus> = 1.5.3
  • libm17n-0
  • m17n-db
  • python3> = 3.3
  • python3-dbus
  • python3-xdg
1
CedSha

lp:ibus-typing-booster。 という名前でそこにあるように見えます

1
rocky

ibus-typing-booster公式サイト によると、「インストール方法」セクションにubuntuのエントリがありますが、残念ながら機能していないようです。

とにかく、rpmパッケージをダウンロードして、 alien を使用してdebに変換してみてください。

エイリアンをインストールします。

Sudo apt-get install alien

RPMファイルをDebianパッケージに変換する

Sudo alien package_file.rpm

変換されたDebianパッケージのインストール

Sudo dpkg -i package_file.deb

編集:

Wilfコメントありがとう

ソースコードは https://fedorahosted.org/releases/i/b/ibus-typing-booster/ から見つけることができます

ダウンロードして、コンパイルしてからインストールします。

./configure
make
Sudo make install
0
Maythux