私はPythonを初めて使用します。このスクリプト(gencards.py)をWindowsで実行しようとしていますが、彼は「qrencodeコマンド」を実行する必要があると言っています。私はそれがこのライブラリ、またはより可能性が高いのはWindowsポートを意味すると思います。
Pythonスクリプトでは、彼はqrencodeを次のように使用しています。
os.system("qrencode -o .tempqr.png -s 30 -m 0 -l H " + serial)
実行可能ファイルを介してWindowsライブラリをインストールし、PATHにqrcode.exeを追加し、gencards.pyを編集して「qrcode」または「qrcode.exe」を使用しようとしましたが、常に
'qrcode' is not recognized as an intrnal or external command, operable program or batch file.
私は何が間違っているのですか?
私はWindows7x64でPython2.7を使用しています。