Download and Installation#
Current version: 0.7
All installation files are hosted on SWITCHdrive.ch, a secure data-sharing platform for Swiss universities. The source code is available on GitHub, also for the noScribe Editor.
Windows Installation macOS Installation Linux Installation
Windows#
Download#
Two versions are available. Most users should choose the standard version. If you have an NVIDIA graphics card (RTX 20XX or newer) with at least 6 GB VRAM, you can benefit from CUDA acceleration, which can drastically reduce transcription time.
Standard version (no NVIDIA-GPU): https://drive.switch.ch/index.php/s/EIVup04qkSHb54j?path=%2FnoScribe%20vers.%200.7%2FWindows%2Fnormal
CUDA version (NVIDIA-GPU, at least 6 GB VRAM): https://drive.switch.ch/index.php/s/EIVup04qkSHb54j?path=%2FnoScribe%20vers.%200.7%2FWindows%2Fcuda
CUDA requirements: NVIDIA driver version 570.65 or newer, plus the CUDA toolkit: https://developer.nvidia.com/cuda-downloads?target_os=Windows
Installation#
- Start the installer (may take a few minutes).
- If Windows warns about an “unknown publisher”, choose “More info > Run anyway”. Unfortunately, this warning is hard to avoid for free software.
- If you want to install noScribe silently on multiple machines: start the setup with
/S.
Known Issues (Windows)#
- RTX/GTX-1xxx cards are often no longer supported by CUDA - in this case use the standard version.
- If you see the error “Transcription worker exited unexpectedly (code 3221226505)”, it can help to force CPU usage:
- Quit noScribe.
- Open the file
C:\Users\<USERNAME>\AppData\Local\noScribe\noScribe\config.yml. - Set
force_whisper_cputo'True'(keep the quotes). - Restart noScribe.
macOS#
Apple Silicon (M1-M4, macOS 14+)#
- Download: https://drive.switch.ch/index.php/s/EIVup04qkSHb54j?path=%2FnoScribe%20vers.%200.7%2FmacOS%2FApple%20Silicon
- Open the DMG and drag noScribe and noScribeEdit into the Applications folder.
- Rosetta 2 is required (for ffmpeg). If it is not already installed:
- Open Terminal (
/Applications/Utilities/Terminal.app) - Run
softwareupdate --install-rosetta(or--agree-to-license)
- Open Terminal (
- Start the apps from the Applications folder.
Intel Macs#
- Version 0.7 is currently not available for Intel Macs.
- Version 0.6 (Intel) is available here: https://drive.switch.ch/index.php/apps/files/?dir=/noScribe/noScribe%20releases/noScribe%20vers.%200.6/macOS/x86_64%20(Intel)&fileid=8266174681
- Older versions: https://drive.switch.ch/index.php/s/EIVup04qkSHb54j
Unfortunately we cannot sign the packages correctly for Intel Macs, so you will see a warning that noScribe and noScribeEdit come from unidentified developers. You must manually allow both programs to run if your Gatekeeper is enabled. Follow these steps:
- Double-click the downloaded DMG file.
- Drag noScribe and noScribeEdit into the link to your Applications folder (labeled “drag both here to install”).
- Start noScribe by double-clicking the app in your Applications folder. You will get an error that noScribe is from an unidentified developer. Do the same for noScribe Editor.
- Go to Settings -> Privacy & Security -> scroll down until you see a message that noScribe was blocked from starting, and click “Open Anyway”. Do the same again for the noScribe Editor.
- From now on, both programs should start without issues.
Linux#
Executable Version#
- Download (CUDA or CPU): https://drive.switch.ch/index.php/s/EIVup04qkSHb54j?path=%2FnoScribe%20vers.%200.7%2FLinux
- If 0.7 does not run, use version 0.6.2: https://drive.switch.ch/index.php/s/EIVup04qkSHb54j?path=%2FnoScribe%20vers.%200.6%2FLinux
Installation:
- Extract the archive:
tar -xzvf noScribe_0.7.0_cpu_linux_amd64.tar.gzortar -xzvf noScribe_0.7.0_cuda_linux_amd64.tar.gz - Change into the folder and start:
./noScribe - Optional: adjust
noScribe.desktopandnoScribeEdit.desktop(path inExec=/Icon=).
Manual Installation from Source Code#
Discussion and details: https://github.com/kaixxx/noScribe/discussions/83
Quick overview:
git clone https://github.com/kaixxx/noScribe.git
cd noScribe
# noScribeEdit
rm -rf noScribeEdit/
git clone https://github.com/kaixxx/noScribeEditor.git noScribeEdit
# Python environment
python3 -m venv venv
source venv/bin/activate
# Dependencies
pip install -r environments/requirements_linux.txt
pip install -r noScribeEdit/environments/requirements.txt
# Models
rm -rf models/fast
rm -rf models/precise
git clone https://huggingface.co/mukowaty/faster-whisper-int8 models/fast
git clone https://huggingface.co/mobiuslabsgmbh/faster-whisper-large-v3-turbo models/precise
# Start
python3 ./noScribe.py