Git Product home page Git Product logo

Comments (4)

xuemind avatar xuemind commented on July 20, 2024

I try to specify the encoding when open the README.md. it will be open correctly.

with open('README.md', mode='r', encoding='utf8') as f:
    print(f.readlines())

In my environment, the locale.getpreferredencoding() return 'cp936' which means gbk codec. So, Python use gbk as default codec to decode the README.md incorrectly.

I suggest update the setup file to avoid this issue. But I have no other OS to test it.

from genius.

xuemind avatar xuemind commented on July 20, 2024

I test the codec 'utf_8_sig' can more adaptive and decode both of utf8 and BOM_utf8 file correctly. 'utf8' codec cannot decode BOM_utf8

with open('README.md', mode='r', encoding='utf_8_sig') as f: print(''.join(f.readlines()))

from genius.

duanhongyi avatar duanhongyi commented on July 20, 2024

The installation procedure has been verified by the bsd and linux system, if you want to use on the windows, I think it would be a lot of difficulties, such as git, c99 expansion and so on.recommends using ubuntu or fedora linux or other linux systems.

from genius.

duanhongyi avatar duanhongyi commented on July 20, 2024

But I fix the default encoding is not utf8 lead to the installation of the situation, thanks.

from genius.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.