解決play-1.4.0在linux或mac下提示No such file or directory的問題

問題緣由:"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()
相關文章
相關標籤/搜索