Install on MacBook Pro M3 fails using poetry.
poetry install tries to get the latest possible version of e.g. torch which seems to be 2.5.1 for MacOS. However there is no wheel for this (M3) architecture.
When the poetry install step fails, workaround is to do the following two steps:
poetry add 'torch==2.2.2' (or whatever version I guess, for now minimum version as in TOML file)
poetry install