开发者

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:

  • wgetwget
  • tartar
  • rm -fdel /f
  • gitgit
  • cd ..cd ..
  • exportset:

    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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜