From 344e736006a2c9d6caeee33ea43924750eee509d Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 17 May 2024 12:46:03 +0200 Subject: [PATCH] docs: emphasize venv usage in installation guide Updated the README to strengthen the recommendation of using a virtual environment (venv) during installation. This adjustment aims to guide users towards best practices in Python environment management, potentially reducing common issues related to package dependencies and conflicts. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b93872..d7fd6a2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ system features. The recommended way to install the bot is to use pip to install it from PyPI. ```shell -# If desired, activate a venv first +# Recommended: activate a venv first python -m venv venv . venv/bin/activate