Linux 在Raspberry PI 3上安装OpenALPR时出错

Linux 在Raspberry PI 3上安装OpenALPR时出错,linux,raspberry-pi3,openalpr,make-install,Linux,Raspberry Pi3,Openalpr,Make Install,我刚刚开始使用树莓皮3。我正在尝试在它上面安装一个名为OpenALPR的开源库。它是一个库,将车辆牌照图像作为参数,并返回写在上面的文本。我一直在按照此链接安装库 我正在执行上述链接中指定的安装OpenALPR步骤。我在该步骤的最后一个构建命令中遇到了以下错误,即makeinstall [ 21%] Built target support [ 23%] Built target video [ 51%] Built target openalpr [ 52%] Built target al

我刚刚开始使用树莓皮3。我正在尝试在它上面安装一个名为OpenALPR的开源库。它是一个库,将车辆牌照图像作为参数,并返回写在上面的文本。我一直在按照此链接安装库

我正在执行上述链接中指定的
安装OpenALPR
步骤。我在该步骤的最后一个构建命令中遇到了以下错误,即
makeinstall

[ 21%] Built target support
[ 23%] Built target video
[ 51%] Built target openalpr
[ 52%] Built target alpr
[ 55%] Built target alprd
[ 56%] Built target openalpr-utils-prepcharsfortraining
[ 59%] Built target openalpr-utils-benchmark
[ 60%] Built target openalpr-utils-binarizefontsheet
[ 61%] Built target openalpr-utils-classifychars
[ 63%] Built target openalpr-utils-calibrate
[ 64%] Built target openalpr-utils-tagplates
[ 66%] Built target openalpr-utils-sortstate
[ 69%] Built target unittests
[ 96%] Built target openalpr-static
[ 97%] Built target simpleini
[ 99%] Built target openalprpy
[100%] Built target openalprgo
Install the project...
-- Install configuration: "RelWithDebugInfo"
-- Installing: /usr/bin/alpr
CMake Error at cmake_install.cmake:50 (file):
  file INSTALL cannot copy file "/usr/src/openalpr/src/build/alpr" to
  "/usr/bin/alpr".


Makefile:126: recipe for target 'install' failed
make: *** [install] Error 1

我可以保证,上述所有步骤都已成功完成。关于这个错误,请指导我。谢谢

错误已解决。我所做的只是在没有
sudo
的情况下执行命令
makeinstall
,该命令没有授予复制文件的权限。当我以
sudomakeinstall
的方式执行它时,它执行得非常完美,现在可以正常工作了