Merge pull request #3274 from bmaltais/add-conda-instructions

Add Conda installation instructions to README
pull/3278/head
bmaltais 2025-06-05 15:05:28 -04:00 committed by GitHub
commit ed2ef9aa0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 0 deletions

View File

@ -22,6 +22,7 @@ Support for Linux and macOS is also available. While Linux support is actively m
- [Installation Methods](#installation-methods)
- [Using `uv` (Recommended)](#using-uv-recommended)
- [Using `pip` (Traditional Method)](#using-pip-traditional-method)
- [Using `conda`](#using-conda)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Windows](#windows)
@ -138,6 +139,23 @@ Regardless of your OS, start with these steps:
Then, proceed with OS-specific instructions:
### Using `conda`
```shell
# Create Conda Environment
conda create -n kohyass python=3.11
conda activate kohyass
# Run the Scripts
chmod +x setup.sh
./setup.sh
chmod +x gui.sh
./gui.sh
```
> [!NOTE]
> For Windows users, the `chmod +x` commands are not necessary. You should run `setup.bat` and subsequently `gui.bat` (or `gui.ps1` if you prefer PowerShell) instead of the `.sh` scripts.
**For Windows:**
* If you want to use the new uv based version of the script to run the GUI, you do not need to follow this step. On the other hand, if you want to use the legacy "pip" based method, please follow this next step.