text-generation-webui/modules/one_click_installer_check.py

10 lines
438 B
Python
Raw Normal View History

from pathlib import Path
2023-11-17 03:03:06 +01:00
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'
2023-09-22 22:10:03 +02:00
'https://github.com/oobabooga/text-generation-webui/wiki/Migrating-an-old-one%E2%80%90click-install')