0

the problem that pops

how can I install it? got to get this exact version...

  • (Please don't include links to screen shots of error messages; include the text of the error directly in your future questions.) – David Maze Feb 09 '22 at 11:58

1 Answers1

0
  1. You can try to run docker command with sudo:

    sudo docker pull bitnami/python:3.8.12-debian-10-r156

  2. If you wanna make docker not requiring sudo, so you can run docker commands without sudo you have to run the following commands:

    sudo usermod -aG docker $USER
    newgrp docker

ouflak
  • 2,458
  • 10
  • 44
  • 49