From 61944a16c990c819897f9362eb2af546fa0c94a6 Mon Sep 17 00:00:00 2001 From: Leo Griffiths <9199543+LeoTheGriff@users.noreply.github.com> Date: Tue, 7 Jan 2025 13:40:50 +0000 Subject: [PATCH] fix(docs): update command for activating poetry environment in example from "using `poetry run`" --- docs/basic-usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basic-usage.md b/docs/basic-usage.md index 29c698cae2f..a1326e6b366 100644 --- a/docs/basic-usage.md +++ b/docs/basic-usage.md @@ -183,7 +183,7 @@ For example, these commands should output the same python path: conda activate your_env_name which python poetry run which python -poetry shell +poetry env activate which python ```