I'm trying to install angr==9.2.123 via python -m build --wheel --no-isolation. I have pyvex==9.2.123, bitstring==4.3.0 and bitarray==3.1.1 installed. When I try to build, I'm given this error:
ERROR Missing dependencies:
pyvex>=9.2.123
bitstring -> bitarray<3.1,>=3.0.0
This error seems to suggest that I don't have pyvex>=9.2.123 installed, when really, the problem is just with bitarray. I was wondering if there would be any way to make it more clear where the issue actually is, since this took me about an hour to figure out.
I'm trying to install
angr==9.2.123viapython -m build --wheel --no-isolation. I havepyvex==9.2.123,bitstring==4.3.0andbitarray==3.1.1installed. When I try to build, I'm given this error:This error seems to suggest that I don't have
pyvex>=9.2.123installed, when really, the problem is just with bitarray. I was wondering if there would be any way to make it more clear where the issue actually is, since this took me about an hour to figure out.