Remarkable 마크다운 편집기를 실행할 수 없습니다

Remarkable 마크다운 편집기를 실행할 수 없습니다

우분투 15.10 그놈을 사용하고 있습니다. 다음에서 .deb를 사용하여 Remarkable을 다운로드하고 설치하려고 했습니다.그들의 웹사이트소프트웨어 센터를 통해. 실행하려고 할 때마다 충돌이 발생합니다. 터미널 결과는 다음과 같습니다.

$ remarkable
/usr/lib/python3/dist-packages/remarkable/__init__.py:27: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded.
  from gi.repository import Gtk # pylint: disable=E0611
/usr/lib/python3/dist-packages/remarkable/RemarkableWindow.py:28: PyGIWarning: WebKit was imported without specifying a version first. Use gi.require_version('WebKit', '3.0') before import to ensure that the right version gets loaded.
  from gi.repository import WebKit
*Spellchecking not enabled.
*To enable spellchecking install pygtkspellcheck
*https://pypi.python.org/pypi/pygtkspellcheck/
Traceback (most recent call last):
  File "/usr/bin/remarkable", line 66, in <module>
    remarkable.main()
  File "/usr/lib/python3/dist-packages/remarkable/__init__.py", line 48, in main
    window = RemarkableWindow.RemarkableWindow()
  File "/usr/lib/python3/dist-packages/remarkable_lib/Window.py", line 52, in __new__
    builder = get_builder('RemarkableWindow')
  File "/usr/lib/python3/dist-packages/remarkable_lib/helpers.py", line 48, in get_builder
    builder.add_from_file(ui_filename)
  File "/usr/lib/python3/dist-packages/remarkable_lib/Builder.py", line 86, in add_from_file
    Gtk.Builder.add_from_file(self, filename)
GLib.Error: gtk-builder-error-quark: /usr/share/remarkable/ui/RemarkableWindow.ui:835:58 Object with ID  not found (13)

도움을 주셔서 감사합니다!

답변1

sitzmoebelchronograph가 해결 방법을 언급했습니다.Remarkable Github 프로젝트 문제 #14의 충돌에 대해 설명합니다.

이 문제를 확인할 수 있습니다.

내 Debian 확장에서는 /usr/share/remarkable/ui/RemarkableWindow.ui를 편집하여 이 작업을 좋아했습니다. 다음과 같이 834행에서 842행까지의 모든 항목을 비활성화했습니다.

           <!--
                <child>
                  <object class="GtkMenuItem" id="mnu_about">
                    <property name="related_action"/>
                    <property name="visible">True</property>
                    <property name="can_focus">False</property>
                    <property name="label" translatable="yes">About</property>
                    <property name="use_underline">True</property>
                  </object>
                </child>
               -->

이렇게 하면 주목할 만한 "도움말" 메뉴의 "정보" 메뉴 항목이 비활성화됩니다. 그러면 시작 문제가 해결될 것입니다. 이것이 여러분의 문제를 해결하는 데 도움이 되기를 바랍니다.

답변2

리마커블이 문제가 많았던 것으로 기억합니다.

대신 retext를 사용하는 것이 좋습니다. 그냥 입력하세요 sudo apt install retext.

관련 정보