Python error Problem Resolution: ' ASCII ' codec can ' t encode character

Source: Internet
Author: User

Python at the time of installation, the default encoding is ASCII, when the program is non-ASCII encoding, Python processing often reported such a mistake, Python can not handle non-ASCII encoding, you need to set the default Python code, The encoding format is generally set to UTF8.

Check the online, you can modify all the coding in the program, Force code to UTF8, that is, add code encode ("UTF8"), this method is not recommended, because once less write a place, will result in a large number of error reports.

Solution:

Create a new sitecustomize.py under the Python lib\site-packages folder

Add to:

# Encoding=utf8 Import sysreload (SYS) sys.setdefaultencoding (' UTF8 ')

  

Python error Problem Resolution: ' ASCII ' codec can ' t encode character

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.