binary incompatibility C and python
See original GitHub issueDescribe the bug A clear and concise description of what the bug is.
To Reproduce Steps to reproduce the behavior:
- CDlib version: latest from pip
- Operating System: OsX: 10.15.7
- Python version: 3.8.8
- Version(s) of CDlib required libraries
from cdlib import algorithms
# requires
# brew install libom
import networkx as nx
G = nx.karate_club_graph()
coms = algorithms.infomap(G)
# fails with:
# ValueError: numpy.ndarray size changed, may indicate binary incompatibility. Expected 88 from C header, got 80 from PyObject
Issue Analytics
- State:
- Created 2 years ago
- Comments:15 (4 by maintainers)
Top Results From Across the Web
ValueError: numpy.ndarray size changed, may indicate binary ...
I'm in Python 3.8.5. It sounds too simple to be real, but I had this same issue and all I did was reinstall...
Read more >C API Stability — Python 3.11.1 documentation
CPython's Application Binary Interface (ABI) is forward- and backwards-compatible across a minor release (if these are compiled the same way; see Platform ...
Read more >Binary Compatibility — PyOxidizer 0.8.0 documentation
Binaries produced with PyOxidizer should be able to run nearly anywhere. ... There is also currently a dependency on the Universal C Runtime...
Read more >HPy: binary compatibility and API evolution with Kiwisolver
In this post, we are going to take a look at the binary compatibility and API ... HPy is an alternative to the...
Read more >"may indicate binary incompatibility" - Google Groups
I installed the Enthought Python Distribution 6.1 on my 32-bit Windows XP system. Now when I import my module written in Cython, I...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Same here, works like a charm
everything is working now, thank you for the quick fix @GiulioRossetti 😃