Installation with singularity
Dear developers, I'm trying to run the colabfold container as specified here: https://github.com/sokrypton/ColabFold/wiki/Running-ColabFold-in-Docker
However, I'm having issues setting my cache directory:
singularity run -B /home/isaac12/scratch/colabfold_cache:/cache colabfold_1.5.3-cuda11.8.0.sif python -m colabfold.download
Traceback (most recent call last):
File "/usr/local/envs/colabfold/lib/python3.9/runpy.py", line 197, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/local/envs/colabfold/lib/python3.9/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/usr/local/envs/colabfold/lib/python3.9/site-packages/colabfold/download.py", line 58, in
I wonder if you have any suggestions in this regard. Thanks for your support!
Hi, I had the same problem (with the colabfold_1.5.5-cuda12.2.2.sif)
This works for me to resolve the problem. The CURL_CA_BUNDLE is located in /etc/ssl/certs/ca-certificates.crt instead of /etc/pki/tls/certs/ca-bundle.crt
I have the SIF file downloaded, and I'm working in a virtual environment, then I run: export CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
After that, the certificate was found with no problem, and it ran the download. I hope this helps.