File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ The package works in browsers that support WebAssembly:
3838The 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
5151It'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
6464git clone https://github.com/USTC-KnowledgeComputingLab/ds.git
6565cd 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
139139pytest
140140```
141141
You can’t perform that action at this time.
0 commit comments