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
Following the install instructions for Anaconda and Apple Silicon Mac mini M2 I see the following error with the conda env create
step. I am getting the following error dump
Channels:
- aihabitat
- pytorch
- pyg
- defaults
- conda-forge
Platform: osx-arm64
Collecting package metadata (repodata.json): done
Solving environment: failed
LibMambaUnsatisfiableError: Encountered problems while solving:
- nothing provides requested aihabitat::habitat-sim =0.2.2*
- nothing provides requested mkl <2022
- nothing provides blas * mkl needed by pytorch-1.11.0.arm64-py3.8_0
Could not solve for environment specs
The following packages are incompatible
├─ habitat-sim 0.2.2* does not exist (perhaps a typo or a missing channel);
├─ mkl <2022 does not exist (perhaps a typo or a missing channel);
└─ pytorch 1.11.0* is not installable because it requires
└─ blas * mkl, which does not exist (perhaps a missing channel).
I am running the following Python version
Python 3.12.7
The text was updated successfully, but these errors were encountered:
Hi @doonhammer, I'm sorry that the install instructions are not working.
On Apple's ARM 64, the Anaconda instructions require to specify the environment file explicitly:
conda env create -f environment_arm64.yml
Is the above command the one that generated the error?
If you still get the same error even when specifying -f environment_arm64.yml, this may be a similar problem described in #81. There, the solution seemed to be to use the Miniconda setup instructions (if you're using zsh shell):
Describe the bug
Following the install instructions for Anaconda and Apple Silicon Mac mini M2 I see the following error with the
conda env create
step. I am getting the following error dump
I am running the following Python version
The text was updated successfully, but these errors were encountered: