Windows CMD命令对应linux命令
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
上面提到的是一些Linux命令。我需要上面提到的相应的Windows命令。请帮忙。
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 corresponding Windows commands of the above mentioned ones. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无论如何,您至少需要安装
wget
、tar
和git
。据我所知,无论如何,git
都附带了 Cygwin 的一半,因此您可以使用其他命令(和bash
)。无论如何:
wget
→wget
tar
→tar
rm -f
→ <代码>del /fgit
→git
cd ..
→cd ..
导出
→设置
:You need at least
wget
,tar
andgit
installed anyway. As far as I knowgit
comes with half of Cygwin anyway so you'd have the other commands (and abash
) available.In any case:
wget
→wget
tar
→tar
rm -f
→del /f
git
→git
cd ..
→cd ..
export
→set
:也许您应该使用 Windows Git 客户端(例如 TortoiseGit)来下载 Tesseract 来源。或者您可以简单地下载他们的 最新的 Windows EXE 版本。无论如何,您可能最好下载已编译的版本。从头开始构建需要一些基础知识。
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.