floodsung / Deep-Learning-Papers-Reading-Roadmap

Deep Learning papers reading roadmap for anyone who are eager to learn this amazing tech!
37.91k stars 7.3k forks source link

The download.py script needs an extra "encoding='utf-8'" at line87 or else it won't work on Windows computers #113

Closed Trenza1ore closed 6 months ago

Trenza1ore commented 5 years ago

Original line 87: with open('README.md') as readme:

Corrected version of line 87: with open('README.md','r',encoding='utf-8') as readme:

Explanation: Windows uses GBK to decode rather than utf-8 at default setting

xy-always commented 6 months ago

已经收到您的邮件。