pip编辑

此安装过程需要一个可用的 Python pip 可执行文件,并且目标机器需要连接互联网才能从 Python 包索引 下载 Curator 和其依赖项。

pip install elasticsearch-curator

使用 pip 升级编辑

如果您已经安装了 Elasticsearch Curator,并且想要升级到最新版本,请使用 -U 标志

pip install -U elasticsearch-curator

使用 pip 安装特定版本编辑

-U 标志会卸载当前版本(如果有),然后安装最新版本或指定版本。通过添加 == 后跟要安装的版本来指定特定版本,例如

pip install -U elasticsearch-curator==X.Y.Z

对于此版本,您需要输入:pip install -U elasticsearch-curator==8.0.15

系统范围安装与仅用户安装编辑

以上命令都隐含着系统范围的安装。这通常需要超级用户访问权限或 sudo 命令。可以使用 --user 标志将 Curator 安装到仅当前用户可访问的路径中。

pip install --user elasticsearch-curator

这将导致 curator 终结点安装在当前用户的 home 目录中,位于 .local 目录的 bin 子目录中。完整路径可能类似于以下内容

/home/user/.local/bin/curator

您可以为此创建别名或符号链接,以便更轻松地调用它。

--user 标志也可以与 -U 标志结合使用

pip install -U --user elasticsearch-curator==X.Y.Z