去安装 github.com/dmacvicar/terraform-provider-libvirt@latest - 显示错误
go install github.com/dmacvicar/terraform-provider-libvirt@latest - shows error
我正在尝试使用 Terraform 在 KVM 上配置虚拟机。
安装中的步骤之一是下载并安装供应商购买命令:
去安装github.com/dmacvicar/terraform-provider-libvirt@latest
但它出错了:
提供命名包的模块的 go.mod 文件包含一个或
更多替换指令。它不得包含会导致其解释不同于主模块的指令。
我没有找到解决办法,有人遇到过吗?
谢谢
正如 JimB 在评论中指出的那样:
If there are replace or exclude directives in the module, the correct
installation method is to clone the source and install it,
git clone github.com/dmacvicar/terraform-provider-libvirt
cd terraform-provider-libvirt
go install
我正在尝试使用 Terraform 在 KVM 上配置虚拟机。 安装中的步骤之一是下载并安装供应商购买命令:
去安装github.com/dmacvicar/terraform-provider-libvirt@latest
但它出错了:
提供命名包的模块的 go.mod 文件包含一个或 更多替换指令。它不得包含会导致其解释不同于主模块的指令。
我没有找到解决办法,有人遇到过吗? 谢谢
正如 JimB 在评论中指出的那样:
If there are replace or exclude directives in the module, the correct installation method is to clone the source and install it,
git clone github.com/dmacvicar/terraform-provider-libvirt
cd terraform-provider-libvirt
go install