5 lines
311 B
Plaintext
5 lines
311 B
Plaintext
# Django Virtual Environment Rule
|
|
|
|
Always use the virtual environment located at `.venv` when running any Python scripts, pip commands, or Django management commands.
|
|
You can run commands using the virtual environment's Python executable directly (e.g., `.venv/bin/python manage.py ...`) or activate it first.
|