错误:未提供以下必需的参数:<path>

时间:2020-09-29 14:22:07

标签: rust rust-cargo

我正在关注Rust getting started guide。我在“正在生成新项目”部分中,试图生成“你好,世界!”通过运行cargo new进行项目。

enter image description here

但是,在运行cargo new之后,出现以下错误。

❯ cargo new
error: The following required arguments were not provided:
    <path>

USAGE:
    cargo new [OPTIONS] <path>

For more information try --help

我正在按照指示在/hello-rust目录中运行命令。我还试图在/hello-rust/src目录中运行命令,结果相同。

我需要在命令中包含什么路径?

1 个答案:

答案 0 :(得分:3)

它不会告诉您运行cargo new。它告诉您运行cargo new hello-rust。在屏幕快照中进一步查找。您圈出的部分仅说明cargo new命令的作用。如果查看它的联机帮助页,您会发现它确实应以cargo new [OPTIONS] PATH的形式调用。