svc-develop-team / so-vits-svc

SoftVC VITS Singing Voice Conversion
GNU Affero General Public License v3.0
25.26k stars 4.74k forks source link

fix# Fixing missing dependencies issue on Windows #305

Closed hxdnshx closed 1 year ago

hxdnshx commented 1 year ago

When using requirements_win.txt to install in a venv environment created under Windows, the following error occurred:

(venv) H:\so-vits-svc>python train.py -c configs/config.json -m 44k
Traceback (most recent call last):
  File "train.py", line 13, in <module>
    from torch.utils.tensorboard import SummaryWriter
  File "H:\so-vits-svc\venv\lib\site-packages\torch\utils\tensorboard\__init__.py", line 1, in <module>
    import tensorboard
ModuleNotFoundError: No module named 'tensorboard'

I completed the missing dependencies by referring to the descriptions in requirements.txt.