web-dev-qa-db-ja.com

Unity 8openclipartスコープの例を実行できません

this ページの指示に従って、Ubuntu SDKをインストールし、チュートリアルのソースコードをダウンロードしました。

Openclipartスコープは正しくビルドされますが、ランタイムエラーが発生します。

$ unity-scope-tool src/openclipart-scope.ini 
scoperegistry: no remote registry configured, only local scopes will be available
RegistryObject::ScopeProcess::exec(): Process for scope: "openclipart-scope" started
file:///usr/share/unity8/Dash/DashContent.qml:100: TypeError: Cannot read property 'loaded' of null
file:///usr/share/unity8/ScopeTool.qml:77:31: Unable to assign [undefined] to scopes_ng::Scope*
file:///usr/share/unity8/ScopeTool.qml:149:23: Unable to assign null to QString

(unity-scope-tool:6243): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
file:///usr/lib/x86_64-linux-gnu/qt5/qml/Ubuntu/Components/Themes/Ambiance/TabBarStyle.qml:303: TypeError: Property 'select' of object QQuickRepeater(0x2711350) is not a function
file:///usr/share/unity8/Dash/DashContent.qml:100: TypeError: Cannot read property 'loaded' of null
Need to use QMirServerApplication
Segmentation fault (core dumped)

助言がありますか?

1
Vincenzo Pii

Unity 8(および拡張機能によるunity-scope-tool)は、MirとX11の両方で実行できるように設計されているため、依存関係にはあいまいさがあります。取得したエラーは、Mirバックエンドを使用しようとしていることを示しています。

Xでツールを実行するために必要なAPIのいくつかを提供するunity8-fake-envパッケージをインストールすることで、問題を修正できるはずです。

Sudo apt-get install unity8-fake-env
1