Kindly help me with this beginning error on carave...
# generative-ai
d
Kindly help me with this beginning error on caravel/Makefile check-env [Makefile93 check-env] error 127
m
Looks like the path to
make
has a space in it that causes problems.
C:/Program Files
You need to figure out how to escape that. A quick and dirty solution might be to put something like
Copy code
MAKE=C:/Program\\\ Files/Git/ming64/bin/make.exe
at the start of your Makefile. You’d have to play around to figure out how many
\
you need.
d
Okay, Thanks