We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf8884 commit 3063b99Copy full SHA for 3063b99
1 file changed
bec_launcher/gui/backend.py
@@ -6,6 +6,7 @@
6
from __future__ import annotations
7
8
import os
9
+import sys
10
from pathlib import Path
11
from typing import List
12
@@ -14,7 +15,7 @@
14
15
from bec_launcher.deployments import get_available_deployments, launch_deployment
16
17
# Default to the deployments folder in bec_launcher package
-DEFAULT_DEPLOYMENTS_PATH = str(Path(__file__).parent.parent / "deployments")
18
+DEFAULT_DEPLOYMENTS_PATH = str(Path(sys.prefix).parent.parent.parent / "config" / "bec")
19
20
# Settings keys
21
SETTINGS_REMEMBER_CHOICE = "launcher/remember_choice"
0 commit comments