-
Notifications
You must be signed in to change notification settings - Fork 601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ModuleNotFoundError: No module named 'Jetson' #308
Comments
hey edit: btw fyi i'm working raspberry pi 4 |
well, i found a way to avoid having to use Jetson module Going in the file : ~/e-Paper/RaspberryPi_JetsonNano/python/lib/waveshare_epd/epdconfig.py Yet i'd like better having a nicer fix to offer.. |
I think this might be the same issue as #313. It looks like several modules are still trying to import RPi.GPIO when it is no longer needed. Impacted modules:
I've fixed this in PR #324, but don't have these models to test with; they get flagged by my general-purpose epdlib as being incompatible. I've narrowed down the problem to the import and that appears to fix the problem. |
File "/home/pi/e-Paper/RaspberryPi_JetsonNano/python/examples/epd_2in13d_test.py", line 11, in
from waveshare_epd import epd2in13d
File "/home/pi/e-Paper/RaspberryPi_JetsonNano/python/lib/waveshare_epd/epd2in13d.py", line 32, in
from . import epdconfig
File "/home/pi/e-Paper/RaspberryPi_JetsonNano/python/lib/waveshare_epd/epdconfig.py", line 238, in
implementation = JetsonNano()
^^^^^^^^^^^^
File "/home/pi/e-Paper/RaspberryPi_JetsonNano/python/lib/waveshare_epd/epdconfig.py", line 121, in init
import Jetson.GPIO
ModuleNotFoundError: No module named 'Jetson'
Iam on Bookworm and followed the tutorial for linux:
sudo apt-get update
sudo apt-get install python3-pip
sudo apt-get install python3-pil
sudo apt-get install python3-numpy
sudo pip3 install RPi.GPIO
sudo pip3 install spidev
But iam getting ModuleNotFoundError: No module named 'Jetson'.
Can someone help? The C Tutorial and Demo working fine. - i need python...
The text was updated successfully, but these errors were encountered: