Skip to content

Updated Installation Steps in README.md #602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ conda activate pyds-env

You can install the library by running the following command,

```python
python scripts/build/install.py
```bash
python -m build --wheel --no-isolation
python -m installer dist/*.whl
```

For development purposes i.e., if you intend to be a contributor,

```python
python scripts/build/develop.py
For development purposes i.e.,
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.
```bash
pip install --editable . --config-settings editable_mode=compat
```

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`.
Expand Down
Loading