-
Notifications
You must be signed in to change notification settings - Fork 43
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
Bug: symbol lookup error: ... undefined symbol #87
Comments
This is a MbedTLS.jl issue. I think it might have already been fixed as it sounds similar to something I heard was fixed recently, so do a package update if you've not done one recently. A workaround is to define a custom fetch method that uses |
It seems there is an issue already (link) to which I added a 👍 You mean that |
We originally used Anyway the simple case, for when you don't need a header as part of the filename is
|
Thanks for the explanation! Just to be sure I understand: Is the |
It is not in DataDeps.jl right now. I might add it to the docs at some point as an example of how to define your own, |
Is there a way for to write the same type of fallback (that uses |
Oh and for the record, I just tried it now and got an function fallback_download(remotepath, localdir)
@assert(isdir(localdir))
filename = basename(remotepath) # only works for URLs with filename as last part of name
localpath = joinpath(localdir, filename)
Base.download(remotepath, localpath)
return localpath
end which seems to work 😄 |
For the (my) record also, note that instead of the clickable URL that FigShare gives you, you can instead use a URL of the type filename = basename(remotepath) # only works for URLs with filename as last part of name |
See around #22 but it is really unrobust.
Sorry, that was a typo on my part. Your code is the correct one. |
Unsure what is happening. Trying to run my code on a google cloud virtual machine, I get:
and that stops the run... (Note I "masked" some stuff to only show the relevant info.) Any ideas?
The text was updated successfully, but these errors were encountered: