From f3511efab21f7612739fd1ca1d2970b66f5ca6de Mon Sep 17 00:00:00 2001 From: Aeris1One Date: Thu, 31 Aug 2023 11:43:39 +0200 Subject: [PATCH] :adhesive_bandage: fix(setup): fix dependencies install outside of venv --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4e9de8c1..8e676d77 100644 --- a/setup.py +++ b/setup.py @@ -116,7 +116,9 @@ def setup_venv(): def install_dependencies(): """Install all dependencies needed for the bot to work.""" opt_deps = ask_user( - "🏗️ Do you want to install dependencies on the actual environment?" + "Do you want to install dependencies on the actual environment?", + default=False, + emoji="🏗️" ) if opt_deps: print("🏗️ Installing dependencies...")