File: install.md

package info (click to toggle)
python-sparse 0.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,816 kB
  • sloc: python: 11,223; sh: 54; javascript: 10; makefile: 8
file content (21 lines) | stat: -rw-r--r-- 460 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Install

You can install this library with ``pip``:

```bash
pip install sparse
```

You can also install from source from GitHub, either by pip installing
directly::
```bash
pip install git+https://github.com/pydata/sparse
```
Or by cloning the repository and installing locally:
```bash
git clone https://github.com/pydata/sparse.git
cd sparse/
pip install .
```
Note that this library is under active development and so some API churn should
be expected.