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
(`Clik here <https://www.youtube.com/watch?v=tUvSI3EpTBQ&list=PLGVZCDnMOq0qmerwB1eITnr5AfYRGm0DF&index=81>`_ to watch the video recording of the tutorial)
70
83
71
84
It contains Jupyter notebooks explaining the main features of Python-Blosc2.
Copy file name to clipboardExpand all lines: README_DEVELOPERS.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,16 @@ You are done!
22
22
pip install .# add -e for editable mode
23
23
```
24
24
25
+
On Windows, clang-cl is required (OpenZL depends on C11 support). Make sure LLVM
26
+
is on PATH and build with Ninja, for example:
27
+
28
+
```bash
29
+
CMAKE_GENERATOR=Ninja \
30
+
CC=clang-cl \
31
+
CXX=clang-cl \
32
+
pip install -e .
33
+
```
34
+
25
35
There are situations where you may want to build the C-Blosc2 library separately, for example, when debugging issues in the C library. In that case, let's assume you have the C-Blosc2 library installed in `/usr/local`:
0 commit comments