You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,4 +2,9 @@
2
2
3
3
Image processing and segmentation functionality in C++ with light-weight python bindings through nanobind and minimal dependencies to enable distribution via pip.
4
4
5
+
The `bioimage_cpp` python library can be installed via pip:
6
+
```bash
7
+
pip install bioimage-cpp
8
+
```
9
+
5
10
Please refer to [the documentation](https://computational-cell-analytics.github.io/bioimage-cpp/) for details.
Copy file name to clipboardExpand all lines: src/bioimage_cpp/__init__.py
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,21 @@
17
17
18
18
## Installation
19
19
20
-
TODO: document once on pip / conda
20
+
The `bioimage_cpp` library is available on PyPI and can be installed via pip:
21
+
```bash
22
+
pip install bioimage-cpp
23
+
```
24
+
25
+
Additional dependencies for tests / data downloads can be installed via `pip install bioimage-cpp[test]` / `pip install bioimage-cpp[data]` respectively.
26
+
27
+
We will make it available on conda-forge as soon as possible.
28
+
29
+
You can also install this library from source as follows:
0 commit comments