From 72733bcab05549d0819014be3bb1dba9b0828bc3 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Tue, 23 Jul 2024 22:33:04 +0000 Subject: [PATCH] Use `python3` in README instructions The `python` symlink may be missing on a system; or even point to py2. We should use `python3` to be sure. (It's ok to use `python` inside a virtualenv though.) Signed-off-by: Ihar Hrachyshka --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c8d667..51023ba 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ scripts/infra/cloud-instance.sh ec2 ssh # Regardless of how you setup your instance git clone https://github.com/instructlab/taxonomy.git && pushd taxonomy && git branch rc && popd git clone --bare https://github.com/instructlab/eval.git && git clone eval.git/ && cd eval && git remote add syncrepo ../eval.git -python -m venv venv +python3 -m venv venv source venv/bin/activate pip install -r requirements.txt pip install -r requirements-dev.txt