我的计算机操作系统是Windows, 在我为自己的项目在桌面上创建文件夹之后,我在此URL https://cmake.org/download/上下载了cmake。我的文件夹名称是“ first-face-recognition”。 之后,我将opeblas文件夹复制到我的项目文件夹中。之后,我在此网站https://sourceforge.net/projects/openblas/files/上安装了OpenBLAS。
我在cmd上运行此代码;
cd /Desktop/first-face-recognition
npm install face-recognition
我收到此错误;
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! dlib-build@0.1.1 install: `node ./install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the dlib-build@0.1.1 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\homiko\AppData\Roaming\npm-cache\_logs\2018-11-23T19_37_56_235Z-debug.log
有人可以帮助我吗?
答案 0 :(得分:0)
我有完全相同的错误,问题是我没有安装cmake
。因此,在Ubuntu中
sudo apt update
sudo apt install cmake
工作完成了。请注意,安装错误未提及有关cmake
的任何内容。
希望对您有所帮助。