Skip to content

Commit

Permalink
fix(installer): restore install successful message
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Mar 28, 2024
1 parent a6188a1 commit b41422f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions installer/lib/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
SUPPORTED_PYTHON = ">=3.10.0,<=3.11.100"
INSTALLER_REQS = ["rich", "semver", "requests", "plumbum", "prompt-toolkit"]
BOOTSTRAP_VENV_PREFIX = "invokeai-installer-tmp"
DOCS_URL = "https://invoke-ai.github.io/InvokeAI/"
DISCORD_URL = "https://discord.gg/ZmtBAhwWhy"

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

message = f"""
*** Installation Successful ***
To start the application, run:
{destination}/invoke.{"bat" if sys.platform == "win32" else "sh"}
For more information, troubleshooting and support, visit our docs at:
{DOCS_URL}
Join the community on Discord:
{DISCORD_URL}
"""
print(message)

class InvokeAiInstance:
"""
Expand Down

0 comments on commit b41422f

Please sign in to comment.