Windows CMD Commands corresponding to linux commands
wget http://tesseract-ocr.googlecode.com/files/tesseract-3.00.tar.gz
tar -zxvf tesseract-3.00.tar.gz
rm -f tesseract-3.00.tar.gz
git clone https://android.googlesource.com/platform/external/jpeg libjpeg
git checkout e0eadaa39b72e33f032220246c771d7302ebeaf8
cd ..
export TESSERACT_PATH=${PWD}/tesseract-3.00
Above mentioned are some Linux commands. I need the co开发者_StackOverflow中文版rresponding Windows commands of the above mentioned ones. Please help.
You need at least wget
, tar
and git
installed anyway. As far as I know git
comes with half of Cygwin anyway so you'd have the other commands (and a bash
) available.
In any case:
wget
→wget
tar
→tar
rm -f
→del /f
git
→git
cd ..
→cd ..
export
→set
:set TESSERACT_PATH=%CD%\tesseract-3.00
Perhaps you should use a Windows Git client, like TortoiseGit, to download Tesseract sources. Or you could simple download their latest Windows EXE release. Probably you'd be better downloading the compiled release anyway. Building from scratch assumes some basic knowledge.
精彩评论