llama install
¶
Run post-installation routines. Downloads and installs large library data files from remote directories.
usage: llama install [-h] [-l LOGFILE]
[-v {debug,info,warning,error,critical,none}] [-d {data}]
Named Arguments¶
- -d, --download
Possible choices: data
Download and install data from specified destinations. These files are data files that are necessary for the pipeline to function.
logging settings¶
- -l, --logfile
File where logs should be written. By default, all logging produced by
llama run
goes to both an archival logfile shared by all instances of the process as well as STDERR. The archival logfile can be overridden with this argument. If you specify/dev/null
or a path that resolves to the same, logfile output will be suppressed automatically. Logs written to the logfile are always at maximum verbosity, i.e. DEBUG. (default: /dev/null)Default: “/dev/null”
- -v, --verbosity
Possible choices: debug, info, warning, error, critical, none
Set the verbosity level at which to log to STDOUT; the
--logfile
will ALWAYS receive maximum verbosity logs (unless it is completely supressed by writing to /dev/null). Available choices correspond to logging severity levels from thelogging
library, with the addition ofnone
if you want to completely suppress logging to standard out. (default: info)Default: “info”