Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi @fridgerator
I've promised this example way before. Eventually, I pull it together. :) Sorry for the delay.
One additional thing is, I've been working with this package in production for almost 2 years. Using libraries like numpy, scipy. I never encountered a problem but 'matplotlib' But I don't think matplotlib is a library to use in a pynode app :) So that's fine :)
On the other hand, I've changed many platforms and struggled to install pynode, and encountered a lot of runtime problems. It is mostly about locating and using libpython. Finally, I've found a lib called find_libpython in github. It is finding the proper libpython location according to platform and python version. So I am using it to find libpython location and then introduce it to pynode by using dlOpen.
It would be great if pynode can find the proper lib on its own. I've experimented around to introduce this feature into this repo but I am not much of a cpp guy and my work didn't produce much result :D and also want to make sure this is something you would like to have in this repo.
the docker example also uses this approach. It seems pretty fine but still needs feedback from developers.
Hope it helps.
Bests