Skip to content

Commit d21dd79

Browse files
committed
venv instead of conda
1 parent 7a66ef0 commit d21dd79

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

units/en/unit2/lemonade-server.mdx

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,22 @@ Once you have installed Lemonade Server, you can launch it by clicking the `Lemo
2121
</hfoption>
2222
<hfoption id="linux">
2323

24-
To install Lemonade on Linux, first create and activate a conda environment or venv:
24+
To install Lemonade on Linux, first create and activate a venv:
25+
26+
<Tip>
27+
28+
If you don't have `uv` installed, you can install it following the instructions [here](https://docs.astral.sh/uv/getting-started/installation/).
29+
30+
</Tip>
2531

2632
```bash
27-
conda create -n lemon python=3.10
28-
conda activate lemon
33+
uv venv --python 3.11
34+
source .venv/bin/activate
2935
```
3036

31-
Then, install the `lemonade-sdk` package with the `oga-cpu-minimal` extra:
32-
```
33-
pip install lemonade-sdk==8.0.2
37+
Then, install the `lemonade-sdk` package:
38+
```bash
39+
uv pip install lemonade-sdk==8.0.2
3440
```
3541

3642
Altenatively, you can also install from source by cloning the repository and building the package:
@@ -43,7 +49,7 @@ pip install -e .
4349
Once installed, you can launch Lemonade by running the following command:
4450

4551
```bash
46-
lemonade-server serve
52+
lemonade-server-dev serve
4753
```
4854

4955
Lemonade Server supports CPU inference across all platforms and engines on Windows x86/x64. For GPU acceleration is enabled through llamacpp engine (Vulkan), with a focus on AMD Ryzen™ AI 7000/8000/300 series and Radeon™ 7000/9000 series.

0 commit comments

Comments
 (0)