I am using Python 2.7 + Windows.
I wanted to install python-docx so I followed the instruction and did:
pip install python-docx
it failed so I did:
easy_install python-docx
both of them give error message:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb0 in position 1: ordinal not in range(128)
then according to searched results, I did:
pip install –-upgrade setuptools
and
pip install –U pip
all produced the same error ("UnicodeDecodeError").
How can I find what went wrong, and how can I correct it?