You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So the last step in the Environment Setup chapter in README.md requires to run command
pip install -e .
which executes the script setup.py. The script fails at line 26 on windows machines since it tries to open the file README.md, which contains emojis and non-ASCII characters, and python's default encoding to read files on windows is ASCII.
Specifying the encoding to open the file fixes the issue. Like
Hi everyone.
So the last step in the Environment Setup chapter in
README.md
requires to run commandwhich executes the script
setup.py
. The script fails at line 26 on windows machines since it tries to open the fileREADME.md
, which contains emojis and non-ASCII characters, and python's default encoding to read files on windows is ASCII.Specifying the encoding to open the file fixes the issue. Like
Could someone kindly modify the code to grant a bit more smoothness for windows users? Much appreciated.
The text was updated successfully, but these errors were encountered: