Open ryanbarr opened 2 years ago
I'm also getting the following error:
build-tesseract script start. This script requires CMake version 3.15 or later. CMake not found on this system.
I'm presuming that any builds in Github actions won't work.
Does something like cmake-js
also need to be added ?
Upon installing
node-native-ocr
withnpm install node-native-ocr
, I was faced with the following error:This prevents
node-native-ocr
from properly installing and being added topackage.json
. The error is caused by the dependencyshelljs
here: build-tesseract.js#L3.It seems as though the
install
script is attempting to use this dependency before installing theshelljs
dependency. You can temporarily resolve this issue by manually installingshelljs
as adevDependency
withnpm install --save-dev shelljs
.