Skip to content

Commit b41422f

Browse files
fix(installer): restore install successful message
1 parent a6188a1 commit b41422f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

installer/lib/installer.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
SUPPORTED_PYTHON = ">=3.10.0,<=3.11.100"
1818
INSTALLER_REQS = ["rich", "semver", "requests", "plumbum", "prompt-toolkit"]
1919
BOOTSTRAP_VENV_PREFIX = "invokeai-installer-tmp"
20+
DOCS_URL = "https://invoke-ai.github.io/InvokeAI/"
21+
DISCORD_URL = "https://discord.gg/ZmtBAhwWhy"
2022

2123
OS = platform.uname().system
2224
ARCH = platform.uname().machine
@@ -158,6 +160,19 @@ def install(
158160
# install the launch/update scripts into the runtime directory
159161
self.instance.install_user_scripts()
160162

163+
message = f"""
164+
*** Installation Successful ***
165+
166+
To start the application, run:
167+
{destination}/invoke.{"bat" if sys.platform == "win32" else "sh"}
168+
169+
For more information, troubleshooting and support, visit our docs at:
170+
{DOCS_URL}
171+
172+
Join the community on Discord:
173+
{DISCORD_URL}
174+
"""
175+
print(message)
161176

162177
class InvokeAiInstance:
163178
"""

0 commit comments

Comments
 (0)