mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-14 11:38:01 -05:00
11 lines
171 B
Python
Executable File
11 lines
171 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import os
|
|
if sys.platform == 'darwin':
|
|
os.environ["PYTORCH_ENABLE_MPS_FALLBACK"] = "1"
|
|
|
|
import ldm.invoke.CLI
|
|
ldm.invoke.CLI.main()
|
|
|