Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/go/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Vagrant 为什么;“流浪者上”;给我一个错误?_Vagrant_Vagrantfile - Fatal编程技术网

Vagrant 为什么;“流浪者上”;给我一个错误?

Vagrant 为什么;“流浪者上”;给我一个错误?,vagrant,vagrantfile,Vagrant,Vagrantfile,我正在安装datasciencetoolbox,在输入valgrant up后,我收到以下错误: dyn-72-33-239-166:psql mona$ mkdir MyDataScienceToolbox dyn-72-33-239-166:psql mona$ cd MyDataScienceToolbox/ dyn-72-33-239-166:MyDataScienceToolbox mona$ vagrant init data-science-toolbox/dst A `Vagra

我正在安装datasciencetoolbox,在输入
valgrant up
后,我收到以下错误:

dyn-72-33-239-166:psql mona$ mkdir MyDataScienceToolbox
dyn-72-33-239-166:psql mona$ cd MyDataScienceToolbox/
dyn-72-33-239-166:MyDataScienceToolbox mona$ vagrant init data-science-toolbox/dst
A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.
dyn-72-33-239-166:MyDataScienceToolbox mona$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:

vm:
* The box 'data-science-toolbox/dst' could not be found.


dyn-72-33-239-166:MyDataScienceToolbox mona$ ls -la Vagrantfile 
-rw-r--r--  1 mona  staff  4646 Aug 25 20:55 Vagrantfile


我遵循本教程:

您是否正在使用旧版本的Vagrant?下面是这些命令对我的作用:

vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'data-science-toolbox/dst' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Loading metadata for box 'data-science-toolbox/dst'
    default: URL: https://vagrantcloud.com/data-science-toolbox/dst
==> default: Adding box 'data-science-toolbox/dst' (v0.1.5) for provider: virtualbox
    default: Downloading: https://vagrantcloud.com/data-science-toolbox/dst/version/1/provider/virtualbox.box
==> default: Waiting for cleanup before exiting...
事实上,你甚至没有尝试从vagrantcloud中检索这个盒子,这可能是一个旧版本


您可以使用
$vagrant version

获取您的版本。此框需要1.5+版本,因此我从该网站下载更新为1.6版本,现在可以使用了

奇怪的是,这个框确实存在:你能粘贴生成文件的内容吗?