so-vits-svc-fork
so-vits-svc-fork copied to clipboard
GUI is broken, completely black when tkinter version is very old
Describe the bug
While running svcg command I encountered a not usable screen
To Reproduce
Installing all the stack and trained model and run svcg
lead to a GUI completely black with checkboxes only visible
Additional context
-MacOS 13.3
- Python 3.9.8
- so-vits-svc-fork Lastest , gui 4.1.1
Version
4.1.1
Platform
Mac OS 13.3, Python 3.9.8
Code of Conduct
- [X] I agree to follow this project's Code of Conduct.
No Duplicate
- [X] I have checked existing issues to avoid duplicates.
Try upgrading tkinter.
pip install --upgrade tkinter
> brew install tcl-tk
> pyenv uninstall 3.9.8
> env \
PATH="$(brew --prefix tcl-tk)/bin:$PATH" \
LDFLAGS="-L$(brew --prefix tcl-tk)/lib" \
CPPFLAGS="-I$(brew --prefix tcl-tk)/include" \
PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" \
CFLAGS="-I$(brew --prefix tcl-tk)/include" \
PYTHON_CONFIGURE_OPTS="--with-tcltk-includes='-I$(brew --prefix tcl-tk)/include' --with-tcltk-libs='-L$(brew --prefix tcl-tk)/lib -ltcl8.6 -ltk8.6'" \
pyenv install 3.9.8
https://stackoverflow.com/a/60469203/9886915
@MatthD hi! I solve this same problem with manual installing.
So, instead of pip install -U torch torchaudio --index-url https://download.pytorch.org/whl/cu118
I installed it likepython -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113
And now it works for me