I have installed tesseract ( build it from the source ) on my rhel machine as specific user without root access as below
/> ./autogen.sh
/> ./configure --prefix=$HOME/local/
/> make
/> make install
When i try to check if it is installer with tesseract -v
. I am getting -bash: /usr/local/bin/tesseract: No such file or directory
(because it is installed on /home/xxx/local)which means that machine looking its default location instead of the location that i installed to.
How can i change this default location to the location that i installed tesseract to ?
Thanks in advance