Replies: 1 comment 3 replies
-
|
You need to make use of # Assuming that you have already install the latest Python,
# create a virtual environment of the name "pyglossary"
# or whatever other name you prefer.
$ python3 -m venv pyglossary --system-site-packages
# Enter the said environment.
$ source pyglossary/bin/activate
# Now, install pyglossary and the other dependencies
# depending on whether you want to use UI frontends
# (gtk3, gtk4, tkinter), cmd or web server, as well as the
# additional dependencies for the format you need to
# to convert to and from.
$ pip install pyglossary <add other deps like lxml, pyicu, etc here>
# Then, you can run
$ pyglossary --ui-<your preferred ui>
# After you are done, leave the venv environment
$ exit |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
-
Hello all!
first, thanks for making tools like PyGlossary!
Linux mint cinnamon-user here.
Deb package
The deb version (3.2.1-1.1) doesn't launch at all, I tried to look for more recent versions but there isn't any. Also, I've python 3.10.
Console errors:
flatpak package
the flatpak version (5.0.7) instead, is much more recent, launches but throws critical errors and doesn't convert anything, after supplying input/output -paths and -formats:
I'm trying to convert from the html AppleDict format. As you can see, dependencies are satisfied:
later I installed lxml, biplist with admin rights even if this is bad practice but a system-side installation of these dependencies didn't help either!
Steps
Btw, this isn't for me the first time to launch PyGlossary, so far I haven't had luck to convert any dictionary, asking kindly for assistance.
What I did so far:
Body.dataas input (PyGlosssary picked did choose automatically the correct format)I've no
/appat root, furthermore flatpak needs to handle system paths differently because running inside a sandbox.Beta Was this translation helpful? Give feedback.
All reactions