Disable remote cache for all bazel rules: set --remote_download_outputs=false

My network is very slow and I want to prevent my program from using remote cache. Is there any flag I can set to achieve this?

// Code

// Some code here

Yes. You can set the no-remote-cache flag to prevent your program from using remote cache.

// Code
--no-remote-cache
// Some code here