In order to use DeepInfer, Docker is required to be installed and configured properly. Here are links for installing Docker CE (community edition) on supported operating systems:
On linux systems make sure to follow the post-installation steps including managing docker as a non-root user.
Once you installed Docker you should validation your installation.
Start a terminal and run the following commands to make sure Docker is installed and configured properly. You should be able to run docker as a non-root user
Type the following command in your shell:
$ docker -v
If docker is installed correctly you will see a message like:
Docker version 18.03.1-ce, build 9ee9f40
First pull the hello-world docker:
$ docker pull hello-world
After pulling is complete run the following command:
$ docker run hello-world
You should see the following output:
Hello from Docker!
This message shows that your installation appears to be working correctly.
.
.
.