InvokeAI/scripts/configure_invokeai.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
377 B
Python
Raw Normal View History

#!/usr/bin/env python
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
import warnings
2023-08-18 15:13:28 +00:00
2023-08-13 12:32:35 +00:00
from invokeai.frontend.install.invokeai_configure import invokeai_configure as configure
if __name__ == "__main__":
2023-11-10 23:55:06 +00:00
warnings.warn(
"configure_invokeai.py is deprecated, running 'invokeai-configure'...", DeprecationWarning, stacklevel=2
)
configure()