Guidance with installing OdfEdit #69
Replies: 4 comments 9 replies
-
|
tkinter is the library used by OdfEdit to manage its graphical user interface. It is natively embedded in the Python distributions. But it seems that tkinter is not installed correctly in your VirtualBox. About AudioPlayer, it seems there is an installation issue with the gi library used by AudioPlayer. You can test the solution proposed here. |
Beta Was this translation helpful? Give feedback.
-
|
You could try to install OdfEdit manualy recovering its files from https://github.com/GrandOrgue/OdfEdit/releases |
Beta Was this translation helpful? Give feedback.
-
|
Running the file under python3 ./OdfEdit was what I was meaning by "execute OdfEdit.py". So we come back to the audioplayer import issue. The good news is that you have not had issue with tkinter which is imported before audioplayer in OdfEdit. You can try to install or reinstall gi with : |
Beta Was this translation helpful? Give feedback.
-
|
Update: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, new user here.
I am currently attempting to install and use OdfEdit on my MacBook Pro with Ubuntu 24.10 ARM desktop edition using Oracle Virtualbox 7.1.6. , to hopefully convert some HW files to GO.
I went on to terminal and installed pillow, lxml, audioplayer and sounddevice under a virtual environment. I used pip install OdfEdit==2.18 but all it said is
ERROR: Could not find a version that satisfies the requirement tkinter (from odfedit) (from versions: none)
ERROR: No matching distribution found for tkinter
I also attempted to run python3 ./OdfEdit.py where I put the OdfEdit.py file from the src file into home and the following message popped up:
Traceback (most recent call last):
File "/home/al086/./OdfEdit.py", line 255, in
from audioplayer import AudioPlayer # install with : pip install audioplayer
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/al086/testpip/lib/python3.12/site-packages/audioplayer/init.py", line 12, in
from .audioplayer_linux import AudioPlayerLinux as AudioPlayer
File "/home/al086/testpip/lib/python3.12/site-packages/audioplayer/audioplayer_linux.py", line 7, in
import gi
ModuleNotFoundError: No module named 'gi'
I am not great at the use of python and python-based applications, and this would be my first try on such installations. Any guidances for resolving these installing issues? Many thanks!
Beta Was this translation helpful? Give feedback.
All reactions