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
will install nut.js and its required dependencies.
73
+
74
+
The installation process assumes you do not have an existing OpenCV installation and will try to build it from source via [opencv4nodejs](https://github.com/justadudewhohacks/opencv4nodejs).
75
+
76
+
Building OpenCV from scratch requires a [cmake](https://cmake.org/) installation.
77
+
78
+
In case you already have an OpenCV installation (version 3.x.x required, e.g. via `brew install opencv@3` or [else](https://docs.opencv.org/3.4/df/d65/tutorial_table_of_content_introduction.html)), you can disable the build process via environment variable:
79
+
80
+
```bash
81
+
export OPENCV4NODEJS_DISABLE_AUTOBUILD=1
82
+
```
83
+
84
+
or
85
+
86
+
```bash
87
+
set OPENCV4NODEJS_DISABLE_AUTOBUILD=1
88
+
```
89
+
90
+
Please make sure to also install all required peer dependencies:
0 commit comments