I'm trying to run some projects using the new Mac M1. Those projects already work on Intel processor and are used by other developers that use Intel.
I am not able to build this simple Dockerfile:
FROM python:3.9
RUN python -m pip install --upgrade pip
RUN pip install tensorflow==2.6.2
I get this message:
> [3/3] RUN pip install tensorflow==2.6.2:
#6 0.583 ERROR: Could not find a version that satisfies the requirement tensorflow==2.6.2 (from versions: none)
#6 0.583 ERROR: No matching distribution found for tensorflow==2.6.2
I am able to install tensorflow locally, outside of the Dockerfile. Also, friends are able to build this image from their intel Mac.
I even tried to run docker build com different console architectures: i386 and arm64, but none work.
Any suggestions?
qemu: uncaught target signal 6 (Aborted) - core dumped
afterimport tensorflow
. It would be great if you can share how you made it work, please? β Ibex