Welcome to the ScrAIbe-WebUI! This guide will walk you through the steps to get started with setting up and running your WebUI. Follow these steps to quickly get up and running.
Before installing ScrAIbe-WebUI, ensure you have the following prerequisites:
- Python: Version 3.11 or later.
- PyTorch: Version 2.0 or later.
- CUDA: A compatible version with your PyTorch version if you want to use GPU acceleration.
Note: PyTorch should be automatically installed with the pip installer. However, if you encounter any issues, you should consider installing it manually by following the instructions on the PyTorch website.
Install ScrAIbe-WebUI on your local machine with ease using PyPI.
pip install scraibe-webui
If you encounter problems with your installation or you want to have an even easier setup for a production environment, consider using our Docker image. For a complete walkthrough on how to set up and use Docker, check out our Docker Getting Started guide.
To install the latest development version from GitHub, use the following command:
pip install git+https://github.com/JSchmie/ScrAIbe-WebUI.git@develop
Alternatively, you can install the latest pre-release from PyPI:
pip install --pre scraibe-webui
For a more hands-on approach, you can set up ScrAIbe-WebUI from scratch by cloning the repository and installing it in editable mode.
Clone the repository to your local machine:
git clone https://github.com/JSchmie/ScrAIbe-WebUI.git
Navigate to the cloned directory:
cd ScrAIbe-WebUI
Install the required dependencies in editable mode:
pip install -e .
This command ensures that any changes made to the local source code will be immediately reflected without reinstalling the package.
After installation, verify that ScrAIbe-WebUI is set up correctly by running the following command:
scraibe-webui --help
If the installation was successful, this will display a list of available commands and options.
Starting the WebUI with the default settings is straightforward. You can use either the command line interface or a short Python script.
To start the WebUI using the command line interface, simply run:
scraibe-webui start
Alternatively, you can start the WebUI using a Python script:
from scraibe_webui import App
App().launch()
Did you know there is a wide variety of customization options available? Customize the appearance, functionality, and performance of your WebUI to better suit your needs. To explore these options, check out our Customize your WebUI guide.
Happy transcribing! 🎉 `