File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ https://docs.astral.sh/uv/getting-started/installation/
2323You can use ` uv ` to create a virtual environment (if it doesn’t already exist) and install all project dependencies:
2424
2525``` bash
26- uv venv
27- uv sync && source .venv/bin/activate
26+ uv venv && source .venv/bin/activate
27+ uv sync
2828```
2929
3030#### Using a specific Python version
3131
3232``` bash
33- uv venv --python 3.12
34- uv sync && source .venv/bin/activate
33+ uv venv --python 3.12 && source .venv/bin/activate
34+ uv sync
3535```
3636
3737#### Adding a new dependency
Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ Prerequisites:
3333``` bash
3434git clone < repository_url>
3535cd evolve
36- uv sync && source .venv/bin/activate
36+ uv venv --python=3.12 && source .venv/bin/activate
37+ uv sync
3738```
3839
3940### Configuration
You can’t perform that action at this time.
0 commit comments