ddPn08 / Radiata

Stable diffusion webui based on diffusers.
https://ddpn08.github.io/Radiata/
Apache License 2.0
983 stars 68 forks source link

lunch fail in Windows #36

Closed Mikage32 closed 1 year ago

Mikage32 commented 1 year ago

Windows環境においてプログラムを置いたパスに空白文字が含まれているとlunchに失敗する。

原因箇所

lunch.py: 118, 159

Mikage32 commented 1 year ago

以下の変更で直りました。お手隙の際にご対応お願いします。

lunch.py:118 run(f'{python} -m pip install "{filepath}"') -> run(f'"{python}" -m pip install "{filepath}"')

lunch.py:159 f"{python} -m pip install -r {requirements_file}", -> f'"{python}" -m pip install -r {requirements_file}'

ddPn08 commented 1 year ago

PRありがとうございます!マージしましたのでクローズします!