Update README.md
Browse files
README.md
CHANGED
|
@@ -120,3 +120,70 @@ Just click the YouTube link below! You'll find my 📧 email there and can messa
|
|
| 120 |
nzgnzg73@gmail.com
|
| 121 |
|
| 122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
nzgnzg73@gmail.com
|
| 121 |
|
| 122 |
|
| 123 |
+
### 1. Clone the Repository
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
[Python 3.10.11](https://www.python.org/downloads/release/python-31011/)
|
| 127 |
+
Open your terminal or command prompt and clone the repository.
|
| 128 |
+
|
| 129 |
+
```bash
|
| 130 |
+
git clone https://github.com/nzgnzg73/Fast-Whisper-Small-Webui.git
|
| 131 |
+
cd Fast-Whisper-Small-Webui
|
| 132 |
+
```
|
| 133 |
+
### 1. Clone the Repository
|
| 134 |
+
|
| 135 |
+
|
| 136 |
+
### 2. Set Up a Python Virtual Environment
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
[Python 3.10.11](https://www.python.org/downloads/release/python-31011/)
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
Create a virtual environment using python 3.10 to avoid dependency conflicts
|
| 143 |
+
|
| 144 |
+
```bash
|
| 145 |
+
py -3.10 -m venv venv
|
| 146 |
+
|
| 147 |
+
```
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
### 3. Activate the virtual environment.
|
| 151 |
+
|
| 152 |
+
```bash
|
| 153 |
+
|
| 154 |
+
venv\scripts\activate
|
| 155 |
+
|
| 156 |
+
```
|
| 157 |
+
|
| 158 |
+
|
| 159 |
+
### GPU:
|
| 160 |
+
```bash
|
| 161 |
+
|
| 162 |
+
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
|
| 163 |
+
|
| 164 |
+
```
|
| 165 |
+
|
| 166 |
+
### CPU:
|
| 167 |
+
```bash
|
| 168 |
+
|
| 169 |
+
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
|
| 170 |
+
|
| 171 |
+
```
|
| 172 |
+
|
| 173 |
+
### 4. Install the Project and Dependencies
|
| 174 |
+
|
| 175 |
+
Users with 10 series NVidia cards or AMD GPUs need to manually install the proper torch 2.6.0 versions.
|
| 176 |
+
Otherwise just install from requirements.txt
|
| 177 |
+
|
| 178 |
+
```bash
|
| 179 |
+
pip install -r requirements.txt
|
| 180 |
+
```
|
| 181 |
+
|
| 182 |
+
## Running the Application
|
| 183 |
+
|
| 184 |
+
With your virtual environment still active, run the script:
|
| 185 |
+
|
| 186 |
+
```bash
|
| 187 |
+
python app.py
|
| 188 |
+
```
|
| 189 |
+
|