Python Forum
Where can I find the ledpixels module? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: Where can I find the ledpixels module? (/thread-23067.html)



Where can I find the ledpixels module? - epl - Dec-09-2019

Hello

In an online course from school my Python programms start with:

from ledpixels import *
from time import sleep
When I try to run this code in PyCharm, it can't find the ledpixels module. I already asked google, but could not find it.

Any ideas how to get the school examples running in PyCharm?

Regards
epl


RE: Where can I find the ledpixels module? - nilamo - Dec-09-2019

That's not a builtin package, so it's something you'll either have to install, or write yourself. I didn't see anything with that name on pypi (the python package repository), so I'm guessing it's specific to the class you're in. Check the assignment/book/materials to see if it tells you where to find it.