Installing Whisper WebUI On Windows 10 - Web
Installing Whisper WebUI On Windows 10 - Web
10/11
Install Nvidia CUDA Toolkit
First, go to https://developer.nvidia.com/cuda-downloads and select “Windows” next to “Operating
System”, “x86_64” next to “Architecture”, “10” or “11” next to “Version” and use the “exe
(Network)” installer Type:
Wait for the installer to finish (this may take 10-15 minutes depending on your CPU and network
speed):
Ignore “Nsight” if it pops up – just click “Next”:
The installer should then be finished – click “Close” (you may also want to deselect “Launch NVIDIA
GeForce Experience”)
Install Anaconda 3
Next, we will install the Python virtual environment manager Anaconda 3, to make managing the
Python environment easier and without any conflicts.
You may then either install Anaconda for the current user or all users (requires admin):
Customize the installation folder:
Click “Open Powershell window here”. Then type the following command in the Powershell Window:
You should then check the Python version with the command “python --version”:
If this is different than Python 3.9.12, you may switch to Python 3.9.12 using the “conda install
python==3.9.12” command:
CondaSSLError
Now, for some reason, I encountered an error here – CondaSSLError: OpenSSL appears to be
unavailable on this machine.
This seems to be an issue with the Python version in the base package. A simple workaround is to
copy some DLL files as explained here:
• https://github.com/conda/conda/issues/11982#issuecomment-1285929629
You should then be able to install Python 3.9.12:
Type “y”.
Installing Torch
If you want GPU acceleration, you will also need to install the GPU version of PyTorch. Go to to the
following website:
• https://pytorch.org/get-started/locally/
Copy the command in “Run this command” and run it in the Anaconda Prompt window:
This may take some to execute:
Installing requirements
Execute the command “cd FOLDER-PATH”, where “FOLDER-PATH” is the path you copied from
Explorer:
Run the command “pip install -r requirements.txt”, which will install all other
requirements in addition to PyTorch:
If you have closed “Anaconda Prompt” from the previous steps, or restarted your computer, you
may get back to this step by opening “Anaconda Prompt” by searching for it in Windows.
Then type “conda activate whisper” to load the Whisper environment. Finally type “cd FOLDER-
PATH” (where “FOLDER-PATH” is path to the whisper-webui directory you cloned earlier).