-
Notifications
You must be signed in to change notification settings - Fork 16
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
Circular import error #49
Comments
Copying python files might lead to some problems, because the file structure can change. You can try to get your current setup to work, but I cannot be of much help there. |
that makes sense. Thank you. |
I think the issue comes from missing libraries. You are building stormpy without the optional libraries for parameters, POMDPs, etc. However, some of the examples are checking for these.
This should only run some of the tests and skip the ones for the optional libraries. |
I now got the following output.
|
Try |
Thanks. Now I see that several tests are skipped but it goes through. However, I believe I followed the installation path for all dependencies (carl and storm) that installed all recommended libraries. Based on the test log above, could you tell me if I perhaps missed a step or is the documentation lacking? |
I'm trying to use the
parse_prism_program
method. The python script can recognize all the other modules except the core module. I have installed stormpy in a directory, and moved thelib/stormpy
andlib/stormpy.egg-info
into a folder with my python scripts that calls stormpy. Is there something I'm doing wrong or missing out? What should I do to make python recognize the core module? I did try to specificallyimport stormpy.core
, but the error is still the same.The text was updated successfully, but these errors were encountered: