Windows systems with an Nvidia GPU.?Python 3.11 (Pytorch is not compatible with Python 3.12 yet)
?Git
?Git Large File Storage.
Pandoc.
CUDA is technically "required" but the installation script installs it automatically. You do not need to have it installed systemwide.
Build Tools.
Certain dependencies don't have pre-compiled "wheels" so you must build them with something like Microsoft Build Tools and/or Visual Studio. I recommend Visual Studio, but make sure to select the "Desktop development with C++" extension and check the four boxes on the right containing "SDK."
Download the latest "release," extract its contents, navigate to the "src" folder to run the commands below.
Navigate to the src folder, open a command prompt, and create a virtual environment:
python -m venv .
Activate the virtual environment:
.Scriptsactivate
Run setup:
python setup_windows.py
If you need to try reinstalling for any reason run this command to uninstall everything and try again:
pip freeze > requirements_uninstall.txt && pip uninstall -r requirements_uninstall.txt -y && del requirements_uninstall.txt
python gui.py
python download_kobold.py from your virtual environment instead.