From bf9dedabccc9c6b6b00964813a8d939a3549f1a1 Mon Sep 17 00:00:00 2001 From: Aritra Basu <24430013+aritra24@users.noreply.github.com> Date: Sun, 23 Jun 2024 00:11:23 +0530 Subject: [PATCH] Fixes hatch command in contributor doc The hatch command hatch env shell probably was meant to be hatch shell. Since env is a separate command, this was fixed in the local_virtualenv doc but missed here. --- contributing-docs/03_contributors_quick_start.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contributing-docs/03_contributors_quick_start.rst b/contributing-docs/03_contributors_quick_start.rst index a717f10d4b69a..eb84bb668a78b 100644 --- a/contributing-docs/03_contributors_quick_start.rst +++ b/contributing-docs/03_contributors_quick_start.rst @@ -169,7 +169,8 @@ like system, this command will install all necessary dependencies that should be libssl-dev locales lsb-release openssh-client sasl2-bin \ software-properties-common sqlite3 sudo unixodbc unixodbc-dev -3. With Hatch you can enter virtual environment with ``hatch env shell`` command: +3. With Hatch you can enter the virtual environment with ``hatch shell`` command, check + `Local virtualenvs <./07_local_virtualenv.rst#using-hatch>`__ for more details: Forking and cloning Project ---------------------------