Commit
·
a6fde97
1
Parent(s):
86da822
add overview to sync all groups
Browse files
README.md
CHANGED
@@ -40,16 +40,24 @@ app/ # Directory for application code
|
|
40 |
|
41 |
## Installation
|
42 |
|
43 |
-
The repository uses `uv` for managing virtual environments. To install `uv`, go [here](https://docs.astral.sh/uv/getting-started/installation/).
|
44 |
|
45 |
```bash
|
46 |
uv venv --python 3.11
|
47 |
```
|
48 |
|
|
|
|
|
49 |
```bash
|
50 |
source .venv/bin/activate
|
51 |
```
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
To install the required dependencies, run the following commands:
|
54 |
|
55 |
### ML Dependencies
|
|
|
40 |
|
41 |
## Installation
|
42 |
|
43 |
+
The repository uses `uv` for managing virtual environments. To install `uv`, go [here](https://docs.astral.sh/uv/getting-started/installation/). Create a virtual environment.
|
44 |
|
45 |
```bash
|
46 |
uv venv --python 3.11
|
47 |
```
|
48 |
|
49 |
+
Activate the virtual environment
|
50 |
+
|
51 |
```bash
|
52 |
source .venv/bin/activate
|
53 |
```
|
54 |
|
55 |
+
Sync the dependencies
|
56 |
+
|
57 |
+
```bash
|
58 |
+
uv sync --all-groups
|
59 |
+
```
|
60 |
+
|
61 |
To install the required dependencies, run the following commands:
|
62 |
|
63 |
### ML Dependencies
|