-
-
Notifications
You must be signed in to change notification settings - Fork 146
This module can only be run on a Raspberry Pi! #86
Comments
I am running into the exact same issue, with my Pi 3. Has anyone found a solution to this? |
Pi 3 is a raspberry pi. Do you mean a particular modle? Sent from Wayne's iPad
|
Wayne, the Raspberry Pi 3 gets the error message generated by line 533 of source/c_gpio/py_gpio.c
I am running a Raspberry Pi 3 Model B. The hardware changes are such that I cannot figure out how to replicate Cor Cornelisse's 9/10/2014 commit, which was designed to add support for the RPi 2B, to add support for the RPi 3B. (github.com/metachris/RPIO/commit/fadf602816accaeba3f54a85b9f35a8181ec076c) |
I have tried adding Pi3 support in my PR, in addition to Pi2 (for both GPIO and PWM). I have only validated on a Pi2 (don't have a Pi3), but I believe Pi3 support should be almost if not already working in my v2 branch. |
I would be happy to but, understand I'm old and slow. I could send you my pi3 on the basis that you will return it when finished. I'll pay round trip postage.
To: metachris/RPIO [email protected] I have tried adding Pi3 support in my PR, in addition to Pi2 (for both GPIO and PWM). I have only validated on a Pi2 (don't have a Pi3), but I believe Pi3 support should be almost if not already working in my v2 branch. |
Yackou, I'm trying to figure out how to clone your RPIO V2 on my Pi3 for testing. Attempting this:
is giving me a fatal repository not found error. |
Ill try v2 tomorrow on pi3 Sent from Wayne's iPad
|
@joshuabaldwin: |
|
I have faced the same problem, this solution make it work: This helped me to install RPIO for several RPI3s. |
This looks like a duplicate of #78 |
RPi3 in 64bit mode doesn't work. I assume because /proc/cpuinfo has slightly changed to not have any information on what board you're using.
|
Neither @Yackou nor @VSkublin solution works for me. Contents of
I'm running Arch Linux ARM:
|
I had the same problem with Ubuntu arm. With raspbian everything works perfectly |
Still no solution for Ubuntu 18.04 aarch64? |
I am facing this same problem on RPi3 EDITED :) Hi everyone, My issue is solved and now i can use RPi.GPIO on my RPi 3 B+ with kali 64-bit. Copy /proc/cpuinfo using this command:
Use nano to edit the cpuinfo_fake and add the missing line (Hardware,Revision and serial number)
and those are the lines i added :
then save the file. now use this command to mount the cpuinfo_fake
now check that it worked using:
u can unmout the fake file using this command:
and ofcourse everytime u reboot ur RPi the cpuinfo file will go back to normal> now to use this with a python script u will need those 2 lines in the beginning of ur script then proceed normally with the rest of the code:
this whole method is explained here : |
thank you ! |
I would of thought this issue would have been resolved by now, but on a PI3 using install python2.7-dev, which solved my can't find python.h problem - thanks, I get this error. Help is needed please.
pi@raspberrypi:~/python $ sudo python PIstuffing.py
Traceback (most recent call last):
File "PIstuffing.py", line 3, in
from RPIO import PWM
File "build/bdist.linux-armv7l/egg/RPIO/init.py", line 115, in
File "build/bdist.linux-armv7l/egg/RPIO/GPIO.py", line 7, in
File "build/bdist.linux-armv7l/egg/RPIO/GPIO.py", line 6, in __bootstrap
SystemError: This module can only be run on a Raspberry Pi!
The text was updated successfully, but these errors were encountered: