Erro na instalação do GOCR

0

Quando tentei instalar o GOCR no Ubuntu Linux 11.10 recebi a seguinte leitura no terminal

??????????:~$ cd gocr-0.48; make install
./configure
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for a BSD-compatible install... /usr/bin/install -c
checking whether make sets $(MAKE)... yes
checking for library containing pnm_readpnminit... no
 * * * try option --with-netpbm=PATH
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for unistd.h... (cached) yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for an ANSI C-conforming const... yes
checking for function prototypes... yes
checking whether setvbuf arguments are reversed... no
checking for wcschr... yes
checking for wcsdup... yes
checking for gettimeofday... yes
checking for popen... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating doc/Makefile
config.status: creating man/Makefile
config.status: creating include/config.h
make -C src install
make[1]: Entering directory '/home/drew/gocr-0.48/src'
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o pgm2asc.o pgm2asc.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o box.o box.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o database.o database.c
database.c: In function ‘ocr_db’:
database.c:411:10: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result]
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o detect.o detect.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o barcode.o barcode.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o lines.o lines.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o list.o list.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o ocr0.o ocr0.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o ocr0n.o ocr0n.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o ocr1.o ocr1.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o otsu.o otsu.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o output.o output.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o pixel.o pixel.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o unicode.o unicode.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o remove.o remove.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o pnm.o pnm.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o pcx.o pcx.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o progress.o progress.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o job.o job.c
gcc -g -O2  -I../include -DHAVE_CONFIG_H -c -o gocr.o gocr.c
# make it conform to ld --as-needed
#gcc -o gocr -lm  gocr.o ./libPgm2asc.a 
gcc -o gocr -lm  gocr.o pgm2asc.o box.o database.o detect.o barcode.o lines.o list.o ocr0.o ocr0n.o ocr1.o otsu.o output.o pixel.o unicode.o remove.o pnm.o pcx.o progress.o job.o 
if test -r gocr; then cp gocr ../bin; fi
#/usr/bin/install -c -d /usr/local/bin /usr/local /usr/local
/usr/bin/install -c -d /usr/local/bin
/usr/bin/install -c ../bin/gocr /usr/local/bin
/usr/bin/install: cannot create regular file '/usr/local/bin/gocr': Permission denied
make[1]: *** [install] Error 1
make[1]: Leaving directory '/home/drew/gocr-0.48/src'
make: *** [install] Error 2

Alguém pode me ajudar a corrigir isso. Eu tive que trabalhar em 10.04 Obrigado Drew

    
por Lofty 28.02.2012 / 08:45

2 respostas

0

No 12.04, você pode instalar o GOCR de pacotes ( sudo apt-get install gocr ou do centro de software). As fontes preparadas também estão disponíveis:

apt-get source gocr
cd gocr-0.49
dpkg-buildpackage -rfakeroot
cd ..
sudo dpkg -i gocr_0.49-1_*.deb

(Se você não tem dpkg-buildpackage você pode instalá-lo: sudo apt-get install build-essential )

Se você precisar criar a partir de fontes que não sejam do Ubuntu, normalmente é mais fácil e seguro instalar o software em seu diretório inicial e configurar caminhos corretamente, como:

cd gocr-0.49
./configure --prefix=${HOME}
make all install
export PATH=${PATH}:${HOME}/bin
gocr

Outro software pode exigir a configuração de LD_LIBRARY_PATH , PYTHONPATH e assim por diante.

    
por taneli 26.05.2012 / 12:08
0
cannot create regular file '/usr/local/bin/gocr': Permission denied

significa que não tem permissões para criar (ou gravar) arquivo. /usr/local/bin/ é de propriedade de root, qualquer usuário padrão (ou usuário de desktop) sem ter direitos não pode criar arquivos lá.

Tente com sudo .

primeiro execute ./configure , em seguida, sudo make install .

    
por Rahul Virpara 26.05.2012 / 12:34