Package Details: remarkable 1.87-7

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: mbloms
Last Packager: mbloms
Votes: 98
Popularity: 0.000001
First Submitted: 2014-08-15 01:38 (UTC)
Last Updated: 2021-09-08 21:38 (UTC)

Pinned Comments

Latest Comments

1 2 3 4 5 6 .. 9 Next › Last »

frankz commented on 2023-03-12 17:37 (UTC)

Wasn't able to build the package. But I was able to run it by simply cloning the github repository and then running run.sh.

mbloms commented on 2021-09-08 21:43 (UTC)

A new release doesn't seem to be coming any time soon. I patched this to use the fix from PR #369. Sorry, I should have done that in January.

chrisjbillington commented on 2021-07-18 11:28 (UTC)

@simonweiss and @Falkenber9, your issue is that you need to rebuild and reinstall the package for Python 3.9. After Python updates, one generally needs to rebuild all AUR packages that contain Python modules. When Python 3.10 comes out you'll need to rebuild the -git package as well. The fact that it is the -git package isn't what fixed it for you, it was the fact that it was a rebuild.

@hollunder the issue you're seeing was fixed upstream but they haven't made a new release:

https://github.com/jamiemcg/Remarkable/commit/2482e9ccf2eac4a24919d053d51588d8aa09db94

Use remarkable-git if you want the fix sooner.

hollunder commented on 2021-06-25 08:39 (UTC)

$ remarkable /usr/lib/python3.9/site-packages/pdfkit/source.py:11: SyntaxWarning: "is" with a literal. Did you mean "=="? if self.type is 'file':

(remarkable:43800): WARNING : 10:37:47.467: Error loading plugin: libnuspell.so.5: cannot open shared object file: No such file or directory

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'

simonweiss commented on 2021-02-07 07:17 (UTC)

@Falkenber9, I ended up installing remarkable-git package. It works with my Python setup.

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