I've been having difficulty installing the software for driving Neopixels. I worked through the guide and had no luck. I kept running into error messages concerning Blinka. Finally, I read a response by MakerMelissa who prompted another person to use:
pip install <package name> rather than sudo pip install <package name>
This seemed to work as the Blinka errors went away and the installs finished.
I ran:
sudo python neopixel_rpi_simpletest.py
to check the installations and it failed. The Import statements for Board and Neopixel both failed (I changed the order as a check) with the messages:
ImportError: No module named board and ImportError: No module named neopixel
My system: Raspberry Pi 3B running the latest Raspberry Pi OS with Python 3.7.3.
I searched the file system and found the downloaded files in directory:
/home/pi/.local/lib/python3.7/site-packages
Any help you can offer would be appreciated.