-
Notifications
You must be signed in to change notification settings - Fork 58
Closed
Description
pip3 install fails:
$ sudo pip3 install overpy
Collecting overpy
Using cached overpy-0.3.1.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-e9c50bzk/overpy/setup.py", line 12, in <module>
long_description = f.read()
File "/usr/lib64/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 1883: ordinal not in range(128)
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-e9c50bzk/overpy
You are using pip version 8.0.2, however version 8.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
but it works for python2
$ sudo pip install overpy
Collecting overpy
Using cached overpy-0.3.1.tar.gz
Installing collected packages: overpy
Running setup.py install for overpy ... done
Successfully installed overpy-0.3.1
You are using pip version 8.0.2, however version 8.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Any ideas?