-
Notifications
You must be signed in to change notification settings - Fork 32
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
segfault (possibly due to BNPY) #4
Comments
The error may be associated either to BNPY installation or to the runtime creation of the temporary directory used by BNPY. Please answer and check the following debugging list to try to identify the issue:
Thank you |
Thanks for getting back! It seems to be the most up-to-date
I did not install the
I do have write permissions.
I removed the TMPDIR, and reran, with the same error. Thanks! |
According to the BNPY documentation (https://bitbucket.org/michaelchughes/bnpy-dev/wiki/Installation.md), BNPY requires
Moreover, as this appears to be a BNPY-specific issue I would suggest the following two things to do:
import os, sys
bnpydir = "/home/sseth/apps/bnpy/github_bnpy-dev/"
tmp = os.path.splitext(output)[0] + "_TMPDIR/"
if os.path.exists(tmp):
shutil.rmtree(tmp)
os.makedirs(tmp)
os.environ["BNPYOUTDIR"] = tmp
sys.path.append(bnpydir)
import bnpy |
thanks for the pointers. Indeed it was an issue with the version of libs. It works well on a new env, with updated libs. Thanks! |
I was about to raise an issue with bnpy-dev on bitbucket, but realize they have moved to github. Would hatchet move to use the new bnpy version instead? |
Yes, HATCHet is going to support both the versions, both the old one in bitbucket ( For now I would recommend to keep using the bitbucket version, which is fully compatible. |
Hi,
I am trying to test hatchet, however after installation of gurobi and bnpy-dev, the first step fails with a segmentation fault. I dont see a core dump being created in the
pwd
.It fails in a similar fashion with WGS demo as well.
I have bnpy-dev from bitbucket, and gurobi 811.
Thanks!
The text was updated successfully, but these errors were encountered: