Replies: 8 comments 42 replies
-
Thank you very much for these detailed instructions! I will link to this post from the main Readme. |
Beta Was this translation helpful? Give feedback.
-
You're welcome. |
Beta Was this translation helpful? Give feedback.
-
Hi, thank you for the instructions!
Therefore I downgraded numpy to version 1.26.4, Step2 runs correctly, but then I'm getting error on Step3 (printed only on GUI):
and on the terminal the only printed text is:
I don't understand where exactly the threshold is given as argument, and how to fix it. |
Beta Was this translation helpful? Give feedback.
-
I reckon this is just a little past my current abilities to install this on Open SUSE. However, I just wanted to say thank you for the effort in providing these instructions and I hope that this comes to Linux via packages at some point. It would be a really useful tool to have. |
Beta Was this translation helpful? Give feedback.
-
hello, I am a bit unsure about editing the noScribe.py file. I have to say, I have no experiences with coding, but the fact that edit line 566 reads: 'return' and 567 reads 'program: str = None' made me a bit unsure about whether or not the code lines are still the same now as they have been in september 2024, when the instructions were published. Here are the lines 558-584 in the noScribe.py file. If someone could tell me where the editing is required, that would help a lot. Thank you!
|
Beta Was this translation helpful? Give feedback.
-
Hey, Thanks a lot @mlndig for your install instructions, it all worked out nicely for me!! Thanks for the help! I use TUXEDO OS x86_64 which is Ubuntu based, with NVIDIA GeForce RTX 4060 Max-Q |
Beta Was this translation helpful? Give feedback.
-
I apologize for providing so little infos about my system, so here are a few:
I'm using Ubuntu 24, running noScribe in a virtual environnement, so trough |
Beta Was this translation helpful? Give feedback.
-
Hi, I try to install it, but I am currently stuck at this error message. Can anyone help? I am not too experienced with this. Collecting av<13,>=11.0 (from faster-whisper->-r environments/requirements_linux.txt (line 6)) × Getting requirements to build wheel did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. × Getting requirements to build wheel did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. |
Beta Was this translation helpful? Give feedback.
-
Hi,
Thanks a lot for all your work.
I've been able to install noScribe and noScribeEdit on linux (ubuntu).
Here are the steps I followed : I hope it might help some people (feel free to edit/reuse as you want).
FYI, I've had to make a few very minor edits in order for the two softwares to work well together. (I might make it cleaner and submit pull requests at some points...)
Installation Instructions:
Note : The procedure below uses a python virtual environment
Make sure to have python and pip installed
Download and extract the latest NoScribe sourcecode from https://github.com/kaixxx/noScribe/releases
Download and extract the latest NoScribeEdit sourcecode from https://github.com/kaixxx/noScribeEditor
Put the noScribeEditor inside the NoScribe folder you dowloaded previously, and rename the
noScribeEditor
folder asnoScribeEdit
Open a terminal and
cd
in the NoScribe directoryEnter the following command lines :
Download all the files from https://huggingface.co/guillaumekln/faster-whisper-large-v2/tree/main to the models/faster-whisper-large-v2 to the models/faster-whisper-large-v2 within your noScribe folder
Download all the files from https://huggingface.co/guillaumekln/faster-whisper-small/tree/main to the models/faster-whisper-small to the models/faster-whisper-small within your noScribe folder
Edit the noScribe.py file as follow in order to be able to open noScribeEditor from noScribe
Edit line 566 so that it reads
program = os.path.join(app_dir, 'noScribeEdit', "noScribeEdit.py")
Edit line 578 so that it reads
Popen(['python3', program, file], **kwargs) #might need to be python instead of python3 depending on your environment
Edit line 580 so that it reads
Popen(['python3', program], **kwargs)
Launching noScribe :
Open a terminal and cd into the directory where the noScribe sources are located
Activate your virtual environment with
source .venv/bin/activate
Run
python3 noScribe.py
HiDPI issue :
If you have a HiDpi screen, noScribe window and font might be very small.
You can add the following lines to the noScribe.py file after line 70
Sidenote : Sometimes, when you select a filename for saving, the "." is missing before the extension by default and this throws an error. Just manually add the dot.
Beta Was this translation helpful? Give feedback.
All reactions