mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-20 10:58:06 -05:00
11 lines
349 B
Python
Executable File
11 lines
349 B
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein)
|
|
|
|
import warnings
|
|
|
|
from invokeai.frontend.install.invokeai_configure import invokeai_configure as configure
|
|
|
|
if __name__ == "__main__":
|
|
warnings.warn("configure_invokeai.py is deprecated, running 'invokeai-configure'...", DeprecationWarning)
|
|
configure()
|