WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8)
May 7
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested docker: Error response from daemon: could not select device driver "" with capabilities: [[gpu]].
I am facing this error on mac while trying to run this command docker run --rm --gpus all -v static_volume:/home/app/staticfiles/ -v media_volume:/app/uploaded_videos/ --name=deepfakeapplication abhijitjadhav1998/deefake-detection-20framemodel
How to solve this error?
1 answer
Accepted answer · original discussion
May 7
Try changing the command as
docker run --rm --gpus all --platform linux/amd64 -v static_volume:/home/app/staticfiles/ -v media_volume:/app/uploaded_videos/ --name=deepfakeapplication abhijitjadhav1998/deefake-detection-20framemodel
Please ensure that you have compatible Nvidia Drivers available as this application uses Nvidia CUDA.
0 question comments
Use comments to ask for clarification. Post a solution as an answer.
No question comments on this page.