Abt some clarification. #5
-
|
I'm trying to run the project on Windows without Docker, but when I get to the step to compile Algo.cpp, my system says 'g++' is not recognized. What do I need to install to fix this, and where exactly should the YOLO weights be placed after downloading? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
You need to install a C++ compiler like MinGW-w64; after installation, ensure its bin folder (e.g., C:\msys64\mingw64\bin) is added to your system's PATH environment variable so the g++ command works. For the YOLO weights, you can either run the download.sh script inside the backend folder to place them automatically in backend/yolo-coco/, or if you download the files manually, put yolov4.weights, yolov4.cfg, and coco.names directly into that same backend/yolo-coco/ directory. |
Beta Was this translation helpful? Give feedback.
You need to install a C++ compiler like MinGW-w64; after installation, ensure its bin folder (e.g., C:\msys64\mingw64\bin) is added to your system's PATH environment variable so the g++ command works. For the YOLO weights, you can either run the download.sh script inside the backend folder to place them automatically in backend/yolo-coco/, or if you download the files manually, put yolov4.weights, yolov4.cfg, and coco.names directly into that same backend/yolo-coco/ directory.