Replies: 6 comments 1 reply
-
|
Hey! Happy you are giving it a go. :) What OS are you running, and what setups did you take to install. |
Beta Was this translation helpful? Give feedback.
-
|
Okay, I completely revamped the installation directions. Please do a git pull and try again. |
Beta Was this translation helpful? Give feedback.
-
Still same error. Have a look at the sreenshot attached. Based on my understanding, there's something wrong with system packages, and not python packages. |
Beta Was this translation helpful? Give feedback.
-
|
We can try something like:
`sudo apt-get install libvte-2.91-dev gir1.2-vte-2.91 python3-gi
python3-gi-cair`
And edit: `gi.require_version('Vte', '3.91')` to say:
`gi.require_version('Vte', '2.91')` in the main.py file.
The versions may be different.
…On Sun, Mar 30, 2025 at 7:30 PM Srimadhava K ***@***.***> wrote:
1. Created venv
2. installed requirements.txt
3. cross-checked the versions (pip freeze)
Still same error. Have a look at the sreenshot attached.
Based on my understanding, there's something wrong with system packages,
and not python packages.
image.png (view on web)
<https://github.com/user-attachments/assets/43db8dac-6b9c-40bb-a4a9-8c53fcb96007>
—
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADDTOE25LSX46PGCPLVPWKL2XCSCTAVCNFSM6AAAAABZYC6TVCVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTENRXGEYDMOA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
@sk5268 I realized the GUI is not really doing anything. To it ripped it off, this is not a CMD app with a cute interface. I also added a new tool to select part of the screen and do OSR, then copy that to your clipboard. Handy for getting text/context from any app/image. |
Beta Was this translation helpful? Give feedback.
-
|
Sounds interesting! Inspired by your implementation, I created my own take on the project — a simplified, no-GUI version tailored to my needs, with extensive use of shortcut triggers. I'll be pushing it to GitHub soon. Funny thing — I had this idea back in May 2024, but it never really took off. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
ValueError: Namespace Vte not available for version 3.91
When I try to sovle this by changing all instancse of 3.91 to 2.91, I get new errors:
Something to do with missing GTK 4.
When I install GTK 4 it says missing GTK 3
I've tried chaning the GTK version as well in gi.require_version, still I'm getting errors.
Beta Was this translation helpful? Give feedback.
All reactions