-
Notifications
You must be signed in to change notification settings - Fork 12
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
Linux build for PyPI #6
Comments
Thanks for the appreciation ! Glad it helps. I'm really interested in seeing how you run audio plugins from python... that would help maybe others, we could add an example of an audio plugin in the examples section of popsicle if you are willing to share your findings. Back to the topic, i haven't focused much on linux / windows lately and i encountered any sort of issues trying to build juce on an old distro in order to build a manylinux wheel (tried manylinux1 and manylinux2010 without success as they are old and juce complains on missing compiler features). If you could provide some help here it would be appreciated... I have a release Github action that is using ubuntu 16.04 to build the wheel, but for some reason they get rejected from pypi as they are not manylinux ones (see https://github.com/kunitoki/popsicle/blob/master/.github/workflows/release.yml#L8-L48). Will look into adding the curl dependency, seems to be a linux only thing. |
You might have better luck with manylinux2014 pypa/manylinux#1012 Try using it with cibuildwheel. You might take the section "Set up Linux dependencies" from your release.yml and move it inside You will have to find the equivalent yum install packages instead of apt-get http://mirror.centos.org/centos/7/os/x86_64/Packages/ |
Great thanks, looks i have to try it and see if it works |
I got some progress https://github.com/kunitoki/popsicle/runs/6246271900?check_suite_focus=true but it seems that linux is still the one creating issues... I got a strange output from cibuildwheel there:
I like the |
I've pushed 0.0.9 for manylinux, could you check if it's working for you? |
Awesome! I don't have a normal linux system to check but I tried google colab. It installed fine and I can import the module. I couldn't run an example, but that is probably ok because google colab might not allow UI-related things. |
Awesome thanks for testing ! Next step is to enable running some unit test written in python on juce classes. |
Hi! Thanks for the sweet project; this is enabling me to load and run audio plugins from Python. 🚀
The README mentions that
pip install
only works on Mac; it looks like there's now a Windows build on PyPI, too. I'd love to see this becomepip install
able on Linux, as I intend to reference it as a dependency in another project.Is there any chance you could create or accept a Linux build for PyPI?
(I would be happy to submit a Linux build for 0.0.8; Not sure what the etiquette is around these things.)
BTW: I had to add
curl
totarget_link_libraries
inCMakeLists.txt
; without it, I getcling::DynamicLibraryManager::loadLibrary() ... libpopsicle.so: undefined symbol: curl_multi_info_read
when importing popsicle. Not sure if this is relevant for other platforms.Thanks!
The text was updated successfully, but these errors were encountered: