-
Notifications
You must be signed in to change notification settings - Fork 34
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
setup.sh incorrect #1
Comments
Code won't work with networkx 2.1 as interfaces are different. Installing a different version than the |
I probably put in too much information, but |
Mark, can you also list the command that produced the error? You only posted the error message. Thanks! |
I ran this (pretty sure binary was nginx1):
|
I concur with @ispoleet, the code appears to need networkx==1.11 and doesn't work with networkx==2.1. What I want to know is how setup.sh works for anyone else? Can you get networkx==1.11 to work with angr==7.8.9.26? |
Oddly, it worked for me on Debian 9:
Can you try another binary instead of nginx and see if it works (see the timeout discussion in the other issue)? |
No change, i.e.,
gives the same results as it did for
BTW, not sure if the above two commands really need to be run sequentially or what. The problem seems to be that BOPC currently relies on networkx==1.11. Note that nodes_iterm has been removed from networkx==2.1: https://networkx.github.io/documentation/latest/release/migration_guide_from_1.x_to_2.0.html While angr==7.8.9.26 really appears to require networkx==2.1
So, I'm at the limits of my understanding of python, pip, packages, etc: why you can have what you have while pip is not allowing me to do the same. |
This dependency issue is really odd as it installed fine on my work machine. I was able to reproduce the error on my laptop though. We'll have to update BOPC to the new networkx version to resolve this error. I'll keep the issue open and signal when the rewrite is done. Thanks for reporting! |
I was able to get the install working by changing To get certain BOPC commands running I had to run |
in setup.sh, these packages are incompatible:
pip install angr==7.8.9.26
pip install networkx==1.11
When I allow pip to install networkx==2.1, I get an error as follows:
Which is surprising to me because 'nodes_iter' seems to have been dropped from NetworkX 1.X when moving to NetworkX 2.0.
The text was updated successfully, but these errors were encountered: