Hi! Thanks for the great package.
When running the Quick-Start-Tutorial via the "Open in Colab" badge, I get this error at the model loading step:
RuntimeError: operator torchvision::nms does not exist
This seems to be because Colab's runtime has torch 2.9.x pre-installed, which conflicts with helical's requirements.
Workaround: Replace the !pip install helical cell with:
!pip uninstall torch torchvision torchaudio -y -q
!pip install torch==2.7.0 torchvision==0.22.0 torchaudio==2.7.0 -q
!pip install helical -q
Then restart runtime and continue.
Environment:
- Google Colab (December 2025)
Hi! Thanks for the great package.
When running the Quick-Start-Tutorial via the "Open in Colab" badge, I get this error at the model loading step:
This seems to be because Colab's runtime has torch 2.9.x pre-installed, which conflicts with helical's requirements.
Workaround: Replace the
!pip install helicalcell with:Then restart runtime and continue.
Environment: