Has anyone gotten PyPy working with Adafruit's neopixel library? Please excuse my ignorance here - I'm new to most of this.
I installed the neopixel library on the RPi (B+, if it matters) according to the directions on Adafruit's site: https://learn.adafruit.com/neopixels-on ... i/software. I understand that PyPy has its own location for third-party libraries, and this is where I'm getting stuck. I copied the folder I downloaded in the first step (rpi_281x) into [pypy_directory]/lib-python as recommended by this stack overflow post: http://stackoverflow.com/questions/1119 ... ty-modules (also into [pypy_directory]/lib-python/2.7, where all the other modules seem to be). If I run a very simple program:
Code: Select all
import neopixel
print "Hello, PyPy!"
I also tried using pip to install the library, which that stack overflow post also mentions. Running
Code: Select all
sudo pip install neopixel Is this a problem with where I'm putting the neopixel folder, or the folder name (rpi_281x vs neopixel)? Or is it because the neopixel library is ported from Arduino-land and has the Python wrapper? Or is this what it looks like when PyPy just doesn't support a module?
Any help would be much appreciated.
Thanks in advance!