mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-22 22:48:08 -05:00
15 lines
280 B
Python
15 lines
280 B
Python
"""
|
|
InvokeAI Installer
|
|
"""
|
|
|
|
from installer import Installer
|
|
|
|
if __name__ == "__main__":
|
|
inst = Installer()
|
|
try:
|
|
inst.install()
|
|
except KeyboardInterrupt as exc:
|
|
print("\n")
|
|
print("Ctrl-C pressed. Aborting.")
|
|
print("See you again soon!")
|