diff --git a/docs/tech_docs/python/Python-Virtual-Environments.md b/docs/tech_docs/python/Python-Virtual-Environments.md index d244360..b0b9ae4 100644 --- a/docs/tech_docs/python/Python-Virtual-Environments.md +++ b/docs/tech_docs/python/Python-Virtual-Environments.md @@ -64,19 +64,29 @@ This guide provides step-by-step instructions on setting up a Python virtual env ``` # Deactivate the current environment -deactivate + ```bash + deactivate + ``` # Remove the environment directory (be careful with this command) +```bash rm -rf env +``` # Recreate the virtual environment +```bash python3 -m venv env +``` # Activate the environment +```bash source env/bin/activate +``` # Install python-docx package +```bash pip install python-docx +``` ## Tips