-
Notifications
You must be signed in to change notification settings - Fork 8
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
verbose mode for init_jl
and init_project()
#71
Comments
I think error message didn't show up because here Lines 43 to 56 in 89f1c6f
But when |
Verbose mode didn't solve the error message problem, but it could be useful if user wants to startup jnumpy project silently. |
Tonight we encountered an issue that users didn't have write permission to
site-packages
, while JNumPy reported no error and exited without any meaningful message.Considering this, we shall add support for such extreme cases. The api changes could be
init_jl(verbose=True)
andinit_project(__file__, verbose=True)
.For the implementation part, utility functions in
InitTools
should also take theverbose::Bool
argument.The text was updated successfully, but these errors were encountered: