so-vits-svc-fork icon indicating copy to clipboard operation
so-vits-svc-fork copied to clipboard

GUI is broken, completely black when tkinter version is very old

Open MatthD opened this issue 1 year ago • 3 comments

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

Capture d’écran 2023-07-24 à 21 22 44 Capture d’écran 2023-07-24 à 21 22 19

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.

MatthD avatar Jul 24 '23 21:07 MatthD

Try upgrading tkinter.

pip install --upgrade tkinter

pusemuckel888 avatar Jul 25 '23 20:07 pusemuckel888

> 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

clearloop avatar Sep 03 '23 18:09 clearloop

@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 image

vodolazskikh avatar Oct 27 '23 07:10 vodolazskikh