From 34a4bd3a83955f9b5e768e9f25b9071c2433c3ee Mon Sep 17 00:00:00 2001 From: Peter Stein Date: Mon, 28 Oct 2024 20:24:02 +0100 Subject: [PATCH] Use .venv instead of venv --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e3a0a26..6148db2 100644 --- a/README.md +++ b/README.md @@ -124,8 +124,8 @@ packagename ```bash git clone https://github.com/ptrstn/python-starter cd python-starter -python -m venv venv -. venv/bin/activate +python -m venv .venv +. .venv/bin/activate pip install -e .[test] ```