Running Tensorflow on Mac using Docker

Here are the steps to run Tensorflow on Mac using Docker 1) Install docker https://docs.docker.com/docker-for-mac/install 2)Launch docker container with Tensorflow CPU binary image and launch a Jupyter notebook docker run -it -v /MY_LOCAL_COMPUTER_DIR:/MAPPED_DIR_ON_DOCKER -p 8888:8888 -p 6006:6006 tensorflow/tensorflow Note: -v is to map your specified local directory to a directory on Docker. In this way, […]