Open pablo-arantes opened 11 months ago
Same issue here! I think the issue is due to the fact that there is no package named 'cudatoolkit' with the version >=12 on conda-forge channel. Somehow the package name has been changed from 'cudatoolkit' to 'cuda-toolkit' on conda-forge or nvidia channel since the version 12.
I came up with a quick workaround.. just erase the pinned file form the conda-meta directory after installing the condacolab.
!rm -rf /usr/local/conda-meta/pinned
If you want to use the cuda-toolkit 12.2, you can run this code instead.
with open('/usr/local/conda-meta/pinned', 'w') as f:
f.write("python 3.10.*\npython_abi 3.10.* *cp310*\ncuda-toolkit 12.2.*")
!mamba install -q -c nvidia cuda-toolkit=12.2
Hi, I added a PR at #63. Nice to have a new CUDA deployed on Friday :P
Let me know if the following installation from branch fixes the issue:
!pip install -U https://github.com/conda-incubator/condacolab/archive/cuda-version-12.tar.gz
import condacolab
condacolab.install()
Note that conda-forge
only has 12.0 for now, but 12.1 and 12.2 are on the way, so for now I'm only pinning to 12.x (and not 12.2.x).
I guess it should be ok to CUDA compatibility guarantees.
!pip install -U https://github.com/conda-incubator/condacolab/archive/cuda-version-12.tar.gz
This works for the OpenMM Colab notebooks. Thank you!
I recently came across this. I ended up doing !pip install -q condacolab
instead of !pip install -q "https://github.com/conda-incubator/condacolab/archive/main.zip"
. Took me a while to notice commit happen in a the 0.1.x branch https://github.com/conda-incubator/condacolab/tree/0.1.x
Hi,
Until yesterday, I was using CondaColab and everything was working perfectly. Unfortunately, today I encountered the following error:
It seems the error is related to Mamba, but I couldn't find any relevant information in their GitHub repository. Are you experiencing the same issue? Has anyone managed to resolve it?
Thank you,
Pablo