I can confirm the issue of @simonweiss.
Any ideas?
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) |
I can confirm the issue of @simonweiss.
Any ideas?
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
.
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.
There is an outstanding PR which fixes the issues with python 3.9. Shouldn't be too long now.
Don't upgrade to Python 3.9 until they add support. Python 3.9 seems to have broken a lot of libraries.
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'
remarkable is in Standard menu of my lxqt, why not in office?
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'
@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?
please add package python-setuptools to dependencies, i had to install it manually to get remarkable to work.
Pinned Comments