我是Python的新手。我正在尝试在Windows中运行this script (gencards.py),但他说我需要运行“qrencode命令”。我认为这意味着this library,或者更可能是windows port。
在python脚本中,他使用qrencode:
os.system("qrencode -o .tempqr.png -s 30 -m 0 -l H " + serial)
我已经通过可执行文件安装了windows库,我将qrcode.exe添加到PATH,并尝试编辑gencards.py以使用“qrcode”或“qrcode.exe”,但我总是得到
'qrcode' is not recognized as an intrnal or external command, operable program or batch file.
我做错了什么?
我在Windows7 x64上使用Python 2.7。
答案 0 :(得分:1)
错误消息表示Windows不知道如何处理qrcode
。检查它是否已安装在您的系统中,以及它的目录是否包含在您的PATH
环境变量中
答案 1 :(得分:1)
尝试通过首先检查是否可以使用命令提示符运行程序(顺便说一句,是'grencode'还是'grcode'?)来解决问题。如果您不能再检查您的PATH设置。当您使用命令提示符成功返回到python脚本时。