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
{{ message }}
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
I have django-postgrespool as a dependency in my Django application. When I try to install it via pip, I get hit with this error:
Downloading from URL https://pypi.python.org/packages/8e/cd/0e9b7c297a84caf6334d1d
bd9da35af50d533f1230b96bc21223d5addc1e/django-postgrespool-0.3.0.tar.gz#md5=39042504
28523e76f057113d07405498 (from https://pypi.python.org/simple/django-postgrespool/)
Running setup.py (path:/tmp/pip_build_gitlab-runner/django-postgrespool/setup.py)
egg_info for package django-postgrespool
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "/tmp/pip_build_gitlab-runner/django-postgrespool/setup.py", line 26, in <module>
long_description=open('README.rst').read(),
File "/usr/lib/python3.4/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 1200: ordinal not in range(128)
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "/tmp/pip_build_gitlab-runner/django-postgrespool/setup.py", line 26, in <module>
long_description=open('README.rst').read(),
File "/usr/lib/python3.4/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 1200: ordinal not in range(128)
I am installing on an Ubuntu 14.04.4 LTS (GNU/Linux 3.13.0-76-generic x86_64) machine with python3
The text was updated successfully, but these errors were encountered:
I have resolved by setting export LC_ALL=en_US.UTF-8 and than install django-postgrespool.
For me issue was on export LC_ALL=C and forcing default language.
I have django-postgrespool as a dependency in my Django application. When I try to install it via pip, I get hit with this error:
I am installing on an Ubuntu 14.04.4 LTS (GNU/Linux 3.13.0-76-generic x86_64) machine with python3
The text was updated successfully, but these errors were encountered: