Skip to content

Commit 41bc3f8

Browse files
Updated Installation Steps in README.md
The readme file had deprecated setup.py files which do not work in the latest edition of windows due to a lock on rewriting pyd files
1 parent ed88315 commit 41bc3f8

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,15 @@ conda activate pyds-env
3131

3232
You can install the library by running the following command,
3333

34-
```python
35-
python scripts/build/install.py
34+
```bash
35+
python -m build --wheel --no-isolation
36+
python -m installer dist/*.whl
3637
```
3738

38-
For development purposes i.e., if you intend to be a contributor,
39-
40-
```python
41-
python scripts/build/develop.py
39+
For development purposes i.e.,
40+
If you intend to contribute to the project, you can install the library in editable mode using PEP 660-compatible tools. This allows changes to the source code to reflect immediately without needing to rebuild.
41+
```bash
42+
pip install --editable . --config-settings editable_mode=compat
4243
```
4344

4445
Make sure you change your working directory to `pydatastructs` before executing any of the above commands. Also, your python version should be at least `3.8`.

0 commit comments

Comments
 (0)