6

不知道为什么我会遇到这个问题,但我不能添加流浪者盒子。

使用 Windows 10,尝试使用 powershell 和简单的命令提示符。同样的问题。这是一个相对较新的Windows安装。也许我错过了一些必需的包裹?

首先我尝试了这个命令:

vagrant box add hashicorp/precise32

并得到错误:

The box 'hashicorp/precise32' could not be found or
could not be accessed in the remote catalog. If this is a private
box on HashiCorp's Atlas, please verify you're logged in via
`vagrant login`. Also, please double-check the name. The expanded
URL and error message are shown below:

URL: ["https://atlas.hashicorp.com/hashicorp/precise32"]
Error:

所以我手动下载了盒子并尝试了这个:

vagrant box add base64 file:///D:/downloads/vagrant_boxes/precise64.box

并再次收到此错误:

==> box: Box file was not detected as metadata. Adding it directly...
==> box: Adding box 'base64' (v0) for provider:
    box: Unpacking necessary files from: file:///D:/downloads/vagrant_boxes/precise64.box
    box:
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.
4

7 回答 7

6

当前版本(截至目前)OSX 上的库不支持与 Vagrant 1.8.7 捆绑的 curl 版本。我安装了 1.8.6,一切都像冠军一样工作。为了检验这个理论:

cd /opt/vagrant/embedded/bin
./curl --help

如果你得到一个“正常”的回复,那么你应该没问题,或者还有其他问题。

于 2016-11-23T06:02:52.887 回答
4

发生这种情况时,我正在使用 vagrant v1.8.0。那天晚些时候,vagrant v1.8.1 发布了。我没有尝试,而是转回 v1.7.4,问题就消失了。

于 2016-01-01T10:01:53.260 回答
4

自从我安装 vagrant 1.8.1 以来,我一直在解决这个问题,我尝试安装较低版本,但我遇到了同样的问题。希望我在这里解决它:

首先确保您安装了 Microsoft Visual C++ 2010 SP1 Redistributable。这是 64 位https://www.microsoft.com/en-us/download/details.aspx?id=13523 接下来,在我的情况下下载 ssl 版本的 curl 也是 64 位。在这里: https ://curl.haxx.se/latest.cgi?curl=win64-ssl-sspi

现在将 curl.exe 解压缩到 C:\Vagrant\embedded\bin。请查看您的安装目录。

然后完成。如果您不使用 ssl,请尝试使用无 ssl 版本的 curl。希望有帮助

于 2016-02-26T09:51:57.187 回答
1

检查C:\HashiCorp\Vagrant\embedded\bin\curl.exe case 报错,有你的问题。

要解决,只需下载 gitbash、console2、cmder 等...您已安装 curl,或尝试http://www.confusedbycode.com/curl/

但是强烈推荐 gitbash 或 cmder

于 2016-01-05T00:44:44.163 回答
1

https://atlas.hashicorp.com/hashicorp/boxes/precise32 基于官方 URL .. 只有虚拟盒子提供者。试试下面的命令:vagrant init hashcorp/precise32;vagrant up --provider virtualbox

于 2016-02-29T17:02:03.480 回答
0

对于重新安装新版本的 vagrant 没有帮助的 MacOS 用户:

sudo mv /opt/vagrant/embedded/lib/libiconv.2.dylib /opt/vagrant/embedded/lib/libiconv.2.dylib_
brew install libiconv
brew link --force libiconv

归功于:https ://github.com/mitchellh/vagrant/issues/5782

于 2016-11-13T13:27:08.030 回答
-1

您不需要添加框。初始化而不是这个:

vagrant init hashicorp/precise32
vagrant up
vagrant ssh

希望它会自动添加到框列表中。如果您想设置本地框 - 只需几个步骤即可添加:

D:
cd downloads/vagrant_boxes
vagrant box add base64 precise64.box
vagrant up
vagrant ssh
于 2016-01-01T10:16:39.817 回答