mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
9 lines
347 B
Python
9 lines
347 B
Python
|
from pathlib import Path
|
||
|
from modules.logging_colors import logger
|
||
|
|
||
|
if Path('../webui.py').exists():
|
||
|
logger.warning('\nIt looks like you are running an outdated version of '
|
||
|
'the one-click-installers.\n'
|
||
|
'Please migrate your installation following the instructions here:\n'
|
||
|
'https://')
|