mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00: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!")
|