Package Details: remarkable 1.95-2

Git Clone URL: https://aur.archlinux.org/remarkable.git (read-only, click to copy)
Package Base: remarkable
Description: A free fully featured markdown editor for Linux.
Upstream URL: http://remarkableapp.github.io
Keywords: editor markdown remarkable
Licenses: MIT
Submitter: visit
Maintainer: envolution
Last Packager: envolution
Votes: 97
Popularity: 0.000000
First Submitted: 2014-08-15 01:38 (UTC)
Last Updated: 2024-11-23 20:48 (UTC)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 9 Next › Last »

Falkenber9 commented on 2021-02-07 07:07 (UTC)

I can confirm the issue of @simonweiss.

Any ideas?

simonweiss commented on 2021-01-30 09:40 (UTC) (edited on 2021-01-30 09:45 (UTC) by simonweiss)

I have the following error:

➜  ~ remarkable
Traceback (most recent call last):
  File "/usr/bin/remarkable", line 65, in <module>
    import remarkable
ModuleNotFoundError: No module named 'remarkable'

I noticed that /usr/bin/remarkable script tries to add some folders to pythonpath, where remarkable module may be located, but neither of these folders are present in my system after the installation.

I'm using asdf to manage Python versions. Global version is set to system.

luscinius commented on 2021-01-12 21:11 (UTC) (edited on 2021-01-12 21:13 (UTC) by luscinius)

Does not seem to have happened. I added a sed one-liner to PKGBUILD, and it seems to work:

cd "Remarkable-${pkgver}"
# added line below
sed -i 's/getiterator/iter/' remarkable_lib/Builder.py

Ugly, but we already have a patch anyway.

Maddix commented on 2020-12-17 21:00 (UTC) (edited on 2020-12-18 16:55 (UTC) by Maddix)

There is an outstanding PR which fixes the issues with python 3.9. Shouldn't be too long now.

https://github.com/jamiemcg/Remarkable/pull/369

Maddix commented on 2020-12-11 19:11 (UTC)

Don't upgrade to Python 3.9 until they add support. Python 3.9 seems to have broken a lot of libraries.

randomluck commented on 2020-12-08 13:42 (UTC) (edited on 2020-12-08 13:42 (UTC) by randomluck)

Python 3.9 seems to have destroyed something. I can't find the spellcheck package via pacman, too.

/usr/lib/python3.9/site-packages/pdfkit/source.py:11: SyntaxWarning: "is" with a literal. Did you mean "=="?
  if self.type is 'file':
*Spellchecking not enabled.
*To enable spellchecking install python-gtkspellcheck.
pacman -S --asdeps python-gtkspellcheck
Traceback (most recent call last):
  File "/usr/bin/remarkable", line 66, in <module>
    remarkable.main()
  File "/usr/lib/python3.9/site-packages/remarkable/__init__.py", line 49, in main
    window = RemarkableWindow.RemarkableWindow()
  File "/usr/lib/python3.9/site-packages/remarkable_lib/Window.py", line 52, in __new__
    builder = get_builder('RemarkableWindow')
  File "/usr/lib/python3.9/site-packages/remarkable_lib/helpers.py", line 48, in get_builder
    builder.add_from_file(ui_filename)
  File "/usr/lib/python3.9/site-packages/remarkable_lib/Builder.py", line 92, in add_from_file
    ele_widgets = tree.getiterator("object")
AttributeError: 'ElementTree' object has no attribute 'getiterator'

cypa commented on 2020-03-06 13:58 (UTC) (edited on 2020-03-06 13:58 (UTC) by cypa)

remarkable is in Standard menu of my lxqt, why not in office?

mabl commented on 2019-04-14 13:02 (UTC) (edited on 2019-04-14 13:03 (UTC) by mabl)

Without python-setuptools, one gets

$ remarkable                                                                                                                                                                                                                    
Traceback (most recent call last):
  File "/usr/bin/remarkable", line 65, in <module>
    import remarkable
  File "/usr/lib/python3.7/site-packages/remarkable/__init__.py", line 30, in <module>
    from remarkable import RemarkableWindow
  File "/usr/lib/python3.7/site-packages/remarkable/RemarkableWindow.py", line 33, in <module>
    import markdown
  File "/usr/lib/python3.7/site-packages/markdown/__init__.py", line 25, in <module>
    from .core import Markdown, markdown, markdownFromFile
  File "/usr/lib/python3.7/site-packages/markdown/core.py", line 29, in <module>
    import pkg_resources
ModuleNotFoundError: No module named 'pkg_resources'

mbloms commented on 2019-02-20 12:05 (UTC)

@marry_a I tried installing and running remarkable without python-setuptools or any of it's dependencies, and that worked fine for me. What was it that didn't work without it?

marry_a commented on 2019-02-20 10:00 (UTC)

please add package python-setuptools to dependencies, i had to install it manually to get remarkable to work.