diff --git a/cogment_lab/cli/cli.py b/cogment_lab/cli/cli.py index b806239..9ad87fd 100644 --- a/cogment_lab/cli/cli.py +++ b/cogment_lab/cli/cli.py @@ -38,7 +38,7 @@ def install_cogment(): - install_dir = COGMENT_LAB_HOME / "bin" + install_dir = COGMENT_LAB_HOME try: cogment_path = download_cogment(install_dir, "2.19.1") logging.info(f"Cogment installed successfully in [{cogment_path}].") diff --git a/cogment_lab/cli/launch.py b/cogment_lab/cli/launch.py index e6b52ce..dffb287 100644 --- a/cogment_lab/cli/launch.py +++ b/cogment_lab/cli/launch.py @@ -19,7 +19,7 @@ def launch_service(service_name: str): - cogment_path = COGMENT_LAB_HOME / "bin/cogment" + cogment_path = COGMENT_LAB_HOME / "cogment" try: process = subprocess.Popen([cogment_path, "services", service_name]) logging.info(f"{service_name} launched successfully. PID: {process.pid}")