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
Conda gives me pytorch v1.4. Mamba gives me pytorch v1.8.
It seems to me that mamba does not follow the conda recipe restriction. In the pytorch v1.8.1 recipe file meta.yaml: Pytorch v1.8 Run requires "python >=3.9,<3.10.0a0"
If I specify python3.6, pytorch 1.8 should not work according to the recipe.
The text was updated successfully, but these errors were encountered:
What other channels are you using @qisun2 ? There is a pytorch package on conda-forge.
I need to see the output of mamba list. This is very unlikely to be a bug in mamba.
However, the pytorch packages from the pytorch channel are not compatible with mamba, as they are using a deprecated way of shipping cuda enabled builds (#336)
I compared mamba and conda (in conda 4.10.1, miniconda3 with default .condarc config, latest mamba installation: conda install -c conda-forge mamba).
mamba create -c pytorch -n pytorch pytorch python=3.6
conda create -c pytorch -n pytorch pytorch python=3.6
Conda gives me pytorch v1.4. Mamba gives me pytorch v1.8.
It seems to me that mamba does not follow the conda recipe restriction. In the pytorch v1.8.1 recipe file meta.yaml: Pytorch v1.8 Run requires "python >=3.9,<3.10.0a0"
If I specify python3.6, pytorch 1.8 should not work according to the recipe.
The text was updated successfully, but these errors were encountered: