-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't install on non-English Windows. #23
Comments
Thanks for reporting, I'll add a patch soon. |
can you please install from github, ie
|
Thank! Its work! C:\Users\MyUser\PycharmProjects\scss_test>pip install https://github.com/jrief/django-sass-processor/archive/master.zip |
Can you please retry with version 0.3.2 from PyPI, ie
Thanks |
C:\Users\MyUser\PycharmProjects\scss_test>pip install django-sass-processor |
Sorry for my English.
I have problem with installation.
Log:
C:\Users\MyUser\PycharmProjects\scss_test>pip install django-sass-processor
Collecting django-sass-processor
Using cached django-sass-processor-0.3.0.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 20, in
File "C:\Users\MyUser\AppData\Local\Temp\pip-build-52so00wf\django-sass-processor\setup.py", line 39, in
long_description=convert('README.md', 'rst'),
File "C:\Users\MyUser\AppData\Local\Temp\pip-build-52so00wf\django-sass-processor\setup.py", line 11, in convert
return fd.read()
File "C:\Python34\lib\encodings\cp1252.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 794: character maps to
----------------------------------------
←[31mCommand "python setup.py egg_info" failed with error code 1 in C:\Users\MyUser\AppData\Local\Temp\pip-build-52so00wf\django-sass-processor←[0m
And I have a solution:
in setup.py need replace
with open(filename, 'r') as fd:
to
with open(filename, 'r', encoding='UTF-8') as fd:
I already tried this on my fork and its work!
The text was updated successfully, but these errors were encountered: