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
I recently installed HummusJS with npm install hummus to a directory that had spaces in the path, and received clang: error: no such file or directory: for the space separated portions of the path. This occurs in the build process as follows:
$ npm install hummus
-
> [email protected] install PATH_WITH_SPACES
> node-gyp rebuild
CXX(target) Release/obj.target/pdfwriter/src/deps/PDFWriter/AbstractContentContext.o
clang: error: no such file or directory: ....
I solved the issue by moving the project to a path without spaces, at which point npm install hummus worked as desired.
The text was updated successfully, but these errors were encountered:
I recently installed HummusJS with
npm install hummus
to a directory that had spaces in the path, and receivedclang: error: no such file or directory:
for the space separated portions of the path. This occurs in the build process as follows:I solved the issue by moving the project to a path without spaces, at which point
npm install hummus
worked as desired.The text was updated successfully, but these errors were encountered: