File: README.md

package info (click to toggle)
skimage 0.26.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 32,720 kB
  • sloc: python: 61,600; cpp: 2,592; ansic: 1,591; xml: 1,342; javascript: 1,267; makefile: 135; sh: 16
file content (35 lines) | stat: -rw-r--r-- 823 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# pip requirements files

## Index

These files are generated by `tools/generate_requirements.py` from `pyproject.toml`.

- [default.txt](default.txt)
  Default project dependencies.
- [build.txt](build.txt)
  Requirements for building from the source repository.
- [data.txt](data.txt)
  Data requirements.
- [developer.txt](developer.txt)
  Developer requirements.
- [docs.txt](docs.txt)
  Documentation requirements.
- [optional.txt](optional.txt)
  Optional requirements. All of these are installable without a compiler through pypi.
- [test.txt](test.txt)
  Requirements for running test suite.

## Examples

### Installing requirements

```bash
$ pip install -U -r requirements/default.txt
```

### Running the tests

```bash
$ pip install -U -r requirements/default.txt
$ pip install -U -r requirements/test.txt
```