Thank you.
So, it looks like Habitat will not work for linux-aarch64
without compiling from source, as there are no available distributions:
–
https://anaconda.org/search?q=habitat-sim
Similarly, the pytorch
channel does not offer pytorch
, but there is something on conda-forge
, although I don’t know if it is compatible:
–
https://anaconda.org/search?q=platform:linux-aarch64+pytorch
Lastly, instead of pyg::pyg
from Conda, you’d need torch_geometric
from PyPi.
After taking the above constraints into account and working through additional dependency constraints, this is the environment_linux_aarch64.yml
file I ended up with (removed Habitat dependencies, switched to conda-forge
channel, upgraded Python to 3.9, updated pytorch
to 1.13.1, upgraded torchvision
to 0.14.0, install torch_geometric
via pip
):
# This file may be used to create an environment using:
#
# ## Miniconda or Anaconda
# $ conda env create --file environment_linux_aarch64.yml
# If you are using the zsh shell, run:
# $ conda init zsh
# Or, if you are using a different shell, run:
# $ conda init
# After init, if you do not want conda to change your global shell when
# you open a new terminal, run:
# $ conda config --set auto_activate_base false
# Finally, activate the environment with:
# $ conda activate tbp.monty
#
# platform: linux-aarch64
name: tbp.monty
channels:
- defaults
- conda-forge
dependencies:
- python=3.9
- cmake>=3.14.0
- wget
- conda-forge::pytorch=1.13.1
- conda-forge::quaternion=2023.0.3 # later versions missing np.long
- conda-forge::torchvision=0.14.0
- pip
- pip:
- torch_geometric
- -e .[dev]
Unfortunately, I don’t have access to a Raspberry Pi, so I have no idea if this dependency configuration will work. All I can tell is that Conda didn’t complain about the dependencies and architecture before running into a trying-to-install-aarch64-on-osx-environment-related problem.
Then, if, the above works, you will run into the problem described in this GitHub issue about Windows OS support, where we discovered that Monty is unintentionally coupled to Habitat. However, a path to decoupling is outlined there as well.