mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
13 lines
377 B
Python
Executable File
13 lines
377 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, stacklevel=2
|
|
)
|
|
configure()
|