Skip to content

Commit fe4c922

Browse files
committed
Update installation.md.
1 parent 1378a42 commit fe4c922

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

docs/getting-started/installation.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The package works in browsers that support WebAssembly:
3838
The Python package `apyds` wraps the C++ core via pybind11.
3939

4040
```bash
41-
uv pip install apyds
41+
pip install apyds
4242
```
4343

4444
### Requirements
@@ -51,9 +51,9 @@ uv pip install apyds
5151
It's recommended to use a virtual environment:
5252

5353
```bash
54-
uv venv
55-
source .venv/bin/activate # On Windows: .venv\Scripts\activate
56-
uv pip install apyds
54+
python -m venv venv
55+
source venv/bin/activate # On Windows: venv\Scripts\activate
56+
pip install apyds
5757
```
5858

5959
### Development Installation
@@ -63,7 +63,7 @@ To install from source with development dependencies:
6363
```bash
6464
git clone https://github.com/USTC-KnowledgeComputingLab/ds.git
6565
cd ds
66-
uv pip install -e ".[dev]"
66+
uv sync --extra dev
6767
```
6868

6969
## C++
@@ -112,7 +112,7 @@ npm run build
112112
### Python
113113

114114
```bash
115-
uv pip install -e ".[dev]"
115+
uv sync --extra dev
116116
```
117117

118118
### C++
@@ -135,7 +135,7 @@ npm test
135135
### Python Tests
136136

137137
```bash
138-
uv pip install pytest
138+
pip install pytest
139139
pytest
140140
```
141141

0 commit comments

Comments
 (0)