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