You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm installing a condacolab via install_from_url() because I need a conda/mamba with python 3.9 while colab is pinned to 3.10. I tried with several versions of mambaforge, included some of the official website or this:
I've tried as well with the conda constructor following the instruction of the condacolab pypi but modifying the version to 3.9:
name: condacolab # you can edit this if you wantversion: 0.1# increment if you change the specs, for reproducibility!channels:
- conda-forgespecs:
- python =3.9 # Python MUST be version 3.7
- pip
- conda
- mamba # mamba is not needed but recommended# Pip dependencies are NOT recommended. If you do need them# uncomment the line below and edit `pip-dependencies.sh`.# post_install: pip-dependencies.sh# do not edit below this line# ---------------------------installer_type: sh
After running all these installations, I load my environment.yml and the conda list shows the correct version of my dependencies. For example:
!conda list | grep ngl
nglview 3.0.8 pyh1da8cd4_0 conda-forge
Hi, I'm installing a condacolab via install_from_url() because I need a conda/mamba with python 3.9 while colab is pinned to 3.10. I tried with several versions of mambaforge, included some of the official website or this:
https://github.com/jaimergp/miniforge/releases/tag/22.11.1-4_colab
I've tried as well with the conda constructor following the instruction of the condacolab pypi but modifying the version to 3.9:
After running all these installations, I load my environment.yml and the conda list shows the correct version of my dependencies. For example:
But when doing the import in a cell:
The weirdest thing is that when I import this dependency in pure python it works:
Any idea of what I'm missing?
The text was updated successfully, but these errors were encountered: