-
Notifications
You must be signed in to change notification settings - Fork 17
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
issues with python setup.py install #19
Comments
Hi @rc. Thanks for the comment. I have had trouble with the Here I have explicitly separated out the mumps step: This is not ideal. Do you have any suggestions for a work around? I am still a bit of a novice on the setup.py and making it work across all of the different environments. I also don't want the install to fail if Mumps is not installed. Regarding the tests, I have been following: Which puts the tests in the top level directory. I am not sure why it would copy the Might be worth following some more of the conventions in our finite volume package: It will take me a bit of time to get back around to this repo. If you have experience in these areas I am absolutely up for some PR help! :) |
As for mumps, I have no particular idea, how this could be conveniently handled. I am just (sort of) starting with mumps. Regarding the tests, I am using
which would put the Not sure how to do that with the plain distutils, maybe https://docs.python.org/2/distutils/setupscript.html#installing-additional-files could help. |
Took a long time to address this one, Indeed the setup.py was finding and installing a "tests" package. This has been address in #38 |
Hello,
first, thank you for making this package available. I managed to get the tests running in the pymatsolver directory without problems, using the instructions in the README,rst (not using anaconda). There are, however, some issues, when trying to use the
python setup.py install
command.tests
directory is installed into.../python/dist-packages
directly (on ubuntu, this issite-packages
) and not into.../python/dist-packages/pymatsolver
.The text was updated successfully, but these errors were encountered: