NIST 生物识别图像软件 (NBIS) 的完整安装指南?
Complete installation guide for NIST Biometric Image Software (NBIS)?
尝试安装 NBIS 时,我在 linux 上收到以下错误,当 运行 ./setup.sh
:
zsh: permission denied: ./setup.sh
和以下当 运行 make config
:
/bin/sh: 3: ./configure: Permission denied
/home/...../Downloads/Rel_5.0.0/buildutil/png_libs.mak:54: recipe for target 'config' failed
make[3]: *** [config] Error 1
我使用 ARK 解压了 zip 文件。
我做错了什么?
使用 unzip 实用程序提取包含 NBIS 源的 .zip 文件。 unzip
维护 zip 文件内容的文件权限结构。然后就可以正常安装了。
安装指南
unzip nbis_v5_0_0.zip
cd Rel_5.0.0
sudo mkdir /usr/local/NBIS/Main
# Ensure a absolute path is provided to setup.sh
./setup.sh /usr/local/NBIS/Main --64 #or --32 if you have a 32 bit system
make config
make it
sudo make install LIBNBIS=yes
cd ..
rm -r -f Rel_5.0.0
我无权访问zip/can不使用解压缩
您可以更改相关文件的权限:
chmod ug+x ./setup.sh
chmod ug+x ./png/src/lib/png/configure
chmod ug+x ./png/src/lib/zlib/configure
然后就可以正常安装了
我首先安装了 gcc 和 x11 库以避免错误:
一个 gcc 库
sudo apt-get install cmake libc6-dev libc6-dev-i386 g++-multilib
X11 库
sudo apt-get install libx11-dev
然后我解压nbis_v5_0_0
cd Rel_5.0.0
./setup.sh /path_to_run --64 (or --32)
sudo make config
sudo make it
sudo install LIBNBIS=yes
尝试安装 NBIS 时,我在 linux 上收到以下错误,当 运行 ./setup.sh
:
zsh: permission denied: ./setup.sh
和以下当 运行 make config
:
/bin/sh: 3: ./configure: Permission denied
/home/...../Downloads/Rel_5.0.0/buildutil/png_libs.mak:54: recipe for target 'config' failed
make[3]: *** [config] Error 1
我使用 ARK 解压了 zip 文件。
我做错了什么?
使用 unzip 实用程序提取包含 NBIS 源的 .zip 文件。 unzip
维护 zip 文件内容的文件权限结构。然后就可以正常安装了。
安装指南
unzip nbis_v5_0_0.zip
cd Rel_5.0.0
sudo mkdir /usr/local/NBIS/Main
# Ensure a absolute path is provided to setup.sh
./setup.sh /usr/local/NBIS/Main --64 #or --32 if you have a 32 bit system
make config
make it
sudo make install LIBNBIS=yes
cd ..
rm -r -f Rel_5.0.0
我无权访问zip/can不使用解压缩
您可以更改相关文件的权限:
chmod ug+x ./setup.sh
chmod ug+x ./png/src/lib/png/configure
chmod ug+x ./png/src/lib/zlib/configure
然后就可以正常安装了
我首先安装了 gcc 和 x11 库以避免错误:
一个 gcc 库
sudo apt-get install cmake libc6-dev libc6-dev-i386 g++-multilib
X11 库
sudo apt-get install libx11-dev
然后我解压nbis_v5_0_0
cd Rel_5.0.0
./setup.sh /path_to_run --64 (or --32)
sudo make config
sudo make it
sudo install LIBNBIS=yes