Hi.
A quick check using
Code: Select all
sudo apt-cache search pifacedigitalio
on a pi running raspbian stretch does not find any packages.
but running the same on a pi running raspbian Jessie
results in
python-pifacedigitalio - The PiFace Digital I/O module.
python3-pifacedigitalio - The PiFace Digital I/O module.
So I would say the packages are not in the stretch repository, a quick search on the web suggests the package is now called pifacecommon but that package is also not in the stretch repositories.
The original package is available from here
https://pypi.python.org/pypi/pifacedigitalio/
you install it manually like this
Code: Select all
wget https://pypi.python.org/packages/06/33/38ff94cd74442da0f2d18241b88ebd3c8a89489ddb1d880d72a67306569c/pifacedigitalio-3.0.5.tar.gz
tar xvzf pifacedigitalio-3.0.5.tar.gz
cd pifacedigitalio-3.0.5/
for python2
sudo python setup.py install
for python3
sudo python3 setup.py install
or the new package is available for here
https://pypi.python.org/pypi/pifacecommon/4.0.0
you install it manually like this
Code: Select all
wget https://pypi.python.org/packages/6d/23/ecfca34aeabb6bb720c96cb5ed0c9c768b012d13174cee25c67aa5dc8c8a/pifacecommon-4.0.0.tar.gz
tar xvzf pifacecommon-4.0.0.tar.gz
cd pifacecommon-4.0.0
for python2
sudo python setup.py install
for python3
sudo python3 setup.py install
I have run both sets of instructions on a pi running stretch and the packages do install but I don't have a piface so I don't have anyway to test if they actually work.