web-dev-qa-db-ja.com

CantorにSageをロードする際の問題

使用中のプログラム:

  • セージ8.1
  • KDE Dev Platform 4.13.3を使用するCantor 0.5
  • Cantor-backend-sage 4.13.30ubuntu0.1

SageをCantorに取り付けても問題はありませんでした。問題は、CantorがSageをロードできないように見えることです。プログラムが初期化セッションで止まっています。

1
Candace Kangas

私にとって、この解決策は機能しているようです:

  1. 既に行ったようにCantorをインストールします

    Sudo apt-get install cantor cantor-backend-sage
    
  2. インストールSageMath7.5.1〜aimsppa5from their PPA

    Sudo add-apt-repository ppa:aims/sagemath
    Sudo apt-get update
    Sudo apt-get install sagemath-upstream-binary-full
    
  3. cantorを起動し、開始時にSageMathバックエンドを選択します

Kubuntu 14.04.5 AMD64 VMでこのアプローチをテストしました。次の結果が得られました。

ターミナルで:

$ cantor 
Bus::open: Can not get ibus-daemon's address. 
IBusInputContext::createInputContext: no connection to ibus-daemon 
Object::disconnect: Unexpected null parameter
cantor(3022)/kdeui (kdelibs): Attempt to use QAction "" with KXMLGUIFactory! 

「欠落した」ibusパッケージのインストール後、次のように表示されます。

$ cantor 
Object::disconnect: Unexpected null parameter
cantor(2285)/kdeui (kdelibs): Attempt to use QAction "" with KXMLGUIFactory! 

そしてGUIで:

Cantor initializes Sage

そのため、私のシステムでは起動しません。

私は バグ1743774をLaunchPadに と報告しました。

1
N0rbert