From 241081548355b8dd133f9d9c4095743493e7d6bc Mon Sep 17 00:00:00 2001 From: Matthew D'Alonzo Date: Mon, 6 May 2024 14:08:25 -0400 Subject: [PATCH] Update install_dependencies.py --- scripts/install_dependencies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install_dependencies.py b/scripts/install_dependencies.py index 5bde604d..674a2e92 100644 --- a/scripts/install_dependencies.py +++ b/scripts/install_dependencies.py @@ -36,10 +36,10 @@ def main(): # Change directory into the repository os.chdir(repo_dir) - run_command("pip install -r requirements.txt") + run_command("pip install .") # Change directory into the repository scripts - os.chdir(os.path.join(repo_dir, "scripts")) + os.chdir("scripts") # Run a script within the repository run_command("python pull_and_compile_protos.py")