pub cache
Send feedbackCache is one of the commands of the pub tool. Learn more about pub.
$ pub cache add <package> [--version <constraint>] [--all] $ pub cache repair
The pub cache command works with the
system cache.
To add new packages to your cache, use pub cache add.
To perform a clean reinstall of the packages in your system cache,
use pub cache repair.
Options
For options that apply to all pub commands, see Global options.
add <package>- Installs a library in your cache.
--all- Optional. Use with
pub addto install all matching versions of a library. --version <constraint>- Optional. Use with
pub addto install the best version matching the specified constraint. For example:$ pub cache add barback --version "<=0.8.0 <0.110"
If--versionis omitted, pub installs the best of all known versions. repair- It's possible for packages in your pub cache to change or break.
For example, if you follow a symlink in the
packagesdirectory and modify a package, this affects the canonical copy of that package in the system cache. Thepub cache repaircommand performs a clean reinstall of all hosted and git packages in the system cache.