Hello,
I use a RPi3 and piCore 8.15
I have just installed the extension python3.6.tcz on a fresh install (from scratch)
The extension Python-RPi.GPIO.tcz does not allow to manage TCP socket interrupts.
So, I used pip3.6 to install RPIO (
https://pypi.python.org/pypi/RPIO/0.10.0) who allows it
This is what I get in turn:
tc@box:/usr/local/bin$ sudo pip3.6 install RPIO
The directory '/home/tc/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/tc/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting RPIO
Downloading RPIO-0.10.0.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-jcsieolm/RPIO/setup.py", line 24, in <module>
long_description=read('README.rst'),
File "/tmp/pip-build-jcsieolm/RPIO/setup.py", line 6, in read
return open(os.path.join(os.path.dirname(__file__), fname)).read()
File "/usr/local/lib/python3.6/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 77: ordinal not in range(128)
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-jcsieolm/RPIO/
Any solution ?