You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2019/05/23 19:48:22 UTC

[GitHub] [incubator-mxnet] larroy commented on issue #14855: [WIP] Jetson nano & TX installation updates

larroy commented on issue #14855: [WIP] Jetson nano & TX installation updates
URL: https://github.com/apache/incubator-mxnet/pull/14855#issuecomment-495360076
 
 
   I sometimes have docker issues as well, I think the way we use it triggers some bugs in caching. I suggest to do the following which has worked for me when I had problems:
   
   * docker pull the base images manually, ex. ubuntu
   * Fully erase the docker cache.
   * Don't use cache-from in your build.py script and build the container locally.
   
   ```
   docker pull ubuntu:16.04
   docker rm $(docker ps -a -q)
   docker rmi $(docker images -a -q)
   ```
   
   This is of course if you think your problems are related to docker caching.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services