From c260d6647945259556b689e5778a2bba2632478b Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 31 Dec 2024 11:13:41 +0100 Subject: [PATCH] Fix typo in `CONTRIBUTING.md` We just `cd`'ed into `python`, thus we should remove it from the path. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2ef187e..5467c6f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -27,7 +27,7 @@ There are some nuances to building the Voyager python code. Please read on for For basic building, you should be able to simply run the following commands: ```shell cd python -pip install -r python/dev-requirements.txt +pip install -r dev-requirements.txt pip install . ```