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
The issue is still present. I found that its root cause is azureml-fsspec not being compatible with Apple Silicon. There is a azure sdk for python issue for this, and it's sitll open.
Approaches I've tried to omit this issue:
Manually trying to figure out the appropriate package versions.
Creating virtual environment using conda with a flag that directs it to use Intel versions of the packages
Opening the terminal with Rosetta emulation and installing the packages in this terminal.
All of the above approaches failed, and for now the only one that I found to be working is to use Docker with Rosetta emulation. One needs to add the --platform linux/amd64 to docker run:
docker run --platform linux/amd64 -it python:3.10 bash
There are no wheels for Apple Silicon available for azureml v1, the solution recommended by Microsoft is to upgrade to azure sdk v2
The text was updated successfully, but these errors were encountered: