問題緣由:"play"腳本中有特殊符號。ubuntu
解決方案:寫腳本去掉便可。spa
代碼:fixplay.py 放在play-1.4.0目錄下執行。親測在osx與ubuntu下都可用。code
with open('play', 'rb+') as f: content = f.read() f.seek(0) f.write(content.replace(b'\r', b'')) f.truncate()