Skip to content

Commit

Permalink
Merge pull request #166 from Siuuuu7/master
Browse files Browse the repository at this point in the history
python setup.py直接执行会遇到utf8格式解析问题
  • Loading branch information
Bond-H authored Jan 5, 2021
2 parents e79336a + e667d7a commit d9e3845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@
install_requires = ['paddlepaddle>=1.6']


with open("README.md", "r") as fh:
with open("README.md", "r", encoding='utf8') as fh:
long_description = fh.read()

setup(

0 comments on commit d9e3845

Please sign in to comment.