I see we can install tensorflow (with GPU) using Docker - here TensorFlow - which Docker image to use?
But how do I do this on a machine that has no external internet connection? Is there a way to first download the tensor flow image
b.gcr.io/tensorflow/tensorflow:latest-gpu: TensorFlow GPU binary image
and then copy it to local file space and "install" it from there?
You can pull the image on a computer that have access to the internet.
sudo docker pull b.gcr.io/tensorflow/tensorflow:latest-gpu
Then you can save this image to a file
sudo docker save -o tensorflow_image.docker b.gcr.io/tensorflow/tensorflow:latest-gpu
Transfer the file on the offline computer (USB/CD/whatever) and load the image from the file:
sudo docker load < tensorflow_image.docker
Courtesy: https://serverfault.com/questions/701248/downloading-docker-image-for-transfer-to-non-internet-connected-machine
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With