Update docs/tech_docs/python/Python-Virtual-Environments.md
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user