docs: emphasize venv usage in installation guide
All checks were successful
Docker CI/CD / Docker Build and Push to Docker Hub (push) Successful in 8m25s

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.
This commit is contained in:
Kumi 2024-05-17 12:46:03 +02:00
parent 3e966334ba
commit 344e736006
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -37,7 +37,7 @@ system features.
The recommended way to install the bot is to use pip to install it from PyPI. The recommended way to install the bot is to use pip to install it from PyPI.
```shell ```shell
# If desired, activate a venv first # Recommended: activate a venv first
python -m venv venv python -m venv venv
. venv/bin/activate . venv/bin/activate