Closed claczny closed 17 hours ago
Ok, my bad, sorry.
Nevermind. I thought zstd
would be available on the access node somehow but it wasn't. After getting onto a compute node, the problem was solved, as zstd
was available there.
No worries, thanks for reporting this in fact - the script should fail with an informative error in such case. I will add a check at the top of the script that warns you when curl
or zstd
are missing on the system:
import shutil
...
if shutil.which('curl') is None:
raise ValueError('curl is not installed. Please install it and try again.')
if shutil.which('zstd') is None:
raise ValueError('zstd is not installed. Please install it and try again.')
Fixed in https://github.com/google-deepmind/alphafold3/commit/1d3e173b25504d70e4f49edee25730cdf20386d5.
The script will now fail with a user-friendly error message immediately after starting if either curl or zstd are missing.
Dear all,
thank you very much for making the code and weights available as well as providing installation instructions etc.
I tried to fetch the databases, but hit a bump in between. As you can see, several databases downloaded and unpacked, but I am getting an error:
This is from re-running the
fetch_databases.py
script a second time after it err'd out with the same error from the original run.Kindly let me know how this can be resolved.
Thank you very much again!
Best wishes, Cedric