I have been trying to setup an aws server for my Django Server. I have successfully installed python3.5.1, pip and django.
Following AWS documentation I am running the following command :
pip install awsebcli
Below is the error that I am getting:
Collecting awsebcli
Using cached awsebcli-3.12.4.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-1eejewt6/awsebcli/setup.py", line 46, in <module>
long_description=open('README.rst').read() + open('CHANGES.rst').read(),
File "/usr/lib/python3.5/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 4092: ordinal not in range(128)
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-1eejewt6/awsebcli/
like error occurs when trying to open and read rst files.
Eb repo can be found here. I tried to fix the error in the package and run manually but couldn't get any successful result. Why is there an error in official repo?
I there anything wrong with this? Can anyone help in this?