1 2--- 3title: "Downloading Isolates" 4linkTitle: "Downloading Isolates" 5 6--- 7 8 9The intermediate and final build products from running tests are all stored in 10[Isolate](https://github.com/luci/luci-py/blob/main/appengine/isolate/doc/Design.md), 11and can be downloaded to the desktop for inspection and debugging. 12 13First install the client: 14 15 git clone https://github.com/luci/client-py.git 16 17Add the checkout location to your $PATH. 18 19To download the isolated files for a test first visit 20the build status page and find the "isolated output" link: 21 22<img src="../Status.png" style="margin-left:30px" width=576 height=271 > 23 24 25Follow that link to find the hash of the isolated outputs: 26 27 28<img src="../Isolate.png" style="margin-left:30px" width=451 height=301 > 29 30Then run `isolateserver.py` with --isolated set to that hash: 31 32 $ isolateserver.py \ 33 download \ 34 --isolate-server=https://isolateserver.appspot.com \ 35 --isolated=5b85b7c382ee2a34530e33c7db20a07515ff9481 \ 36 --target=./download/ 37 38 39