Joo-Chan Kim
Joo-Chan Kim
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...
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...
I guess it is the problem with the ipywidgets version 8. I tried the below code and it works now. `!mamba install -c conda-forge nglview ipywidgets=7 `