I have a fully working script in Python 3.5. I tried running it on PyPy3 to see the speedups, but PyPy3 won't recognize a command which is clearly in the HOME environment variable
C:\Users\me\Desktop\PdfConc>where pdftotext
C:\Windows\me\pdftotext.exe
C:\Users\me\Desktop\PdfConc>pypy3
Python 3.5.3 (fdd60ed87e94, Apr 24 2018, 06:27:13)
[PyPy 6.0.0 with MSC v.1910 32 bit] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>> from os import system
>>>> system("pdftotext")
'pdftotext' is not recognized as an internal or external command,
operable program or batch file.
any ideas why it's doing that?