Oddbean new post about | logout
 Hey Yuki, is it me or has the python distro tested ok on alpine? 
 Hey, I not tested on Alpine yet. Have you any issue? 
 I have but not sure if the issue is me.  I cant install from pip.  says no distro is available but i will try manual package installs. 
 Was tryna create a container using your python modules.  when I couldnt get the install to run on python, I switched to js on a node container.  alpine prefers “apk add” over using pip anyway. 
 I'm compiling the wheels only for some python versions and arch, so maybe it's not available the one for your setup. Here you can check the support matrix: https://rust-nostr.org/nostr-sdk/02-installation.html#support-matrix

If miss your one, you can compile the wheel by yourself: 
* Clone rust-nostr repo
* `cd bindings/nostr-sdk-ffi` (or `cd bindings/nostr-ffi`)
* Install `rust` and `just`
* Run `just python`

The wheel will be located in `bindings-python/dist` 
 I had to install cargo as well but it looks like Im 99% the way there.  I will be adding these steps to my container build!!!  Thanks so much for your help.