我跟着这一页安装OCRmyPDF
在 Cygwin 上。我是从非管理员帐户执行此操作的,因此该过程最终创建了~/.local/
所需的文件。但是,以下命令不会产生任何匹配的可执行文件ocrmypdf
:
$ find ~ /!(c|cygdrive) -name 'ocrmypdf*' # Nothing from Bash
$ python3
>>> ocrmypdf --help # From Python
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'ocrmypdf' is not defined
可执行文件位于何处以及如何调用它?
PS 完整免责声明:我是 Python 新手。