You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+65Lines changed: 65 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,71 @@ This project includes a complete suite of evals, based on the LiveKit Agents [te
92
92
uv run pytest
93
93
```
94
94
95
+
## Package Manager Conversion
96
+
97
+
This project includes a tool to convert between different Python package managers. The default is UV for fast, modern dependency management, but you can switch to your preferred package manager.
98
+
99
+
### Supported Package Managers
100
+
-**UV** (default) - Fast, modern Python package manager
101
+
-**pip** - Standard Python package manager (generates `requirements.txt`)
102
+
-**Poetry** - Dependency management with lock files
103
+
-**Pipenv** - Python packaging tool with virtual environments
0 commit comments