每当我在 Linux 上运行 terraform 安装时使用:
wget https://releases.hashicorp.com/terraform/0.11.14/terraform_0.11.14_linux_amd64.zip
sudo unzip ./terraform_0.11.13_linux_amd64.zip
sudo mv terraform /usr/local/bin/
它只解压了一个文件,似乎没有安装。我不确定这是否是应该发生的事情,但我认为不应该这样,因为我无法将其添加到我的路径中。
答案1
从https://learn.hashicorp.com/terraform/getting-started/install.html:
After downloading Terraform, unzip the package. Terraform runs as a single binary named terraform. Any other files in the package can be safely removed and Terraform will still function.
因此,如果您将二进制文件移动到 PATH 中的任何位置,您都应该能够运行它。
运行echo $PATH
以查看你的 PATH 包含哪些目录。