Open erichfrazer opened 8 years ago
I seem to be stuck on the git submodule update --init --recursive step... It is just stuck on cloning to directory. Anyone have any ideas?
It seems to be stuck but after an hour or so you'll see your files in their places.
After that step there is an error when i type .\build.ps1 -Configuration Debug -Platform x64 -PlatformToolset v140 -CudaGeneration None and it says: Die : Missing cmake.exe At C:\WINDOWS\system32\openalpr\windows\build.ps1:150 char:9
anyone have a solution ? Thanks in advance !
After that step there is an error when i type .\build.ps1 -Configuration Debug -Platform x64 -PlatformToolset v140 -CudaGeneration None and it says: Die : Missing cmake.exe At C:\WINDOWS\system32\openalpr\windows\build.ps1:150 char:9
Die "Missing cmake.exe"
anyone have a solution ? Thanks in advance !
Did you find a fix for this?
After that step there is an error when i type .\build.ps1 -Configuration Debug -Platform x64 -PlatformToolset v140 -CudaGeneration None and it says: Die : Missing cmake.exe At C:\WINDOWS\system32\openalpr\windows\build.ps1:150 char:9
Die "Missing cmake.exe"
anyone have a solution ? Thanks in advance !
You have to install CMake from http://www.cmake.org and add the subdirectory containing cmake.exe
to your path before attempting the build script.
git clone https://github.com/openalpr/openalpr.git • cd openalpr • git clone https://github.com/peters/openalpr-windows.git windows • git submodule update --init --recursive • cd windows
SHOULD BE
git clone https://github.com/openalpr/openalpr.git • cd openalpr • git clone https://github.com/peters/openalpr-windows.git windows • cd windows • git submodule update --init --recursive
Fixed in #26
git clone https://github.com/openalpr/openalpr.git • cd openalpr • git clone https://github.com/peters/openalpr-windows.git windows • git submodule update --init --recursive • cd windows
SHOULD BE
git clone https://github.com/openalpr/openalpr.git • cd openalpr • git clone https://github.com/peters/openalpr-windows.git windows • cd windows • git submodule update --init --recursive