phpBB的Vagrantfile提供有关缺少laravel homestead文件的错误

时间:2018-09-04 03:13:44

标签: phpbb phpbb3

除了将Git存储库下载/克隆到本地计算机,然后运行vagrant up以启动VM之外,phpBB Vagrant.md document并没有告诉您如何开始。但是,尝试启动VM时,我当前遇到以下错误。

λ vagrant up
Vagrant failed to initialize at a very early stage:

There was an error loading a Vagrantfile. The file being loaded
and the error message are shown below. This is usually caused by
a syntax error.

Path: C:/Users/Phillip/Desktop/phpbb/Vagrantfile
Line number: 0
Message: LoadError: cannot load such file -- C:/Users/Phillip/Desktop/phpbb/phpBB/vendor/laravel/homestead/scripts/homestead.rb

我在Windows 10上,安装了Ruby 2.5.1,并且Vagrant目前都可以使用。但是,该项目中的该目录当前丢失。我是否需要该文件才能使所有这些正常工作,还是应该只使用INSTALL.html文档创建自己的Vagrantfile并按照这种方式进行操作?

1 个答案:

答案 0 :(得分:1)

您只需要使用composer安装所有依赖项。 如自述文件(https://github.com/phpbb/phpbb/tree/master)中所述:

  

要能够从存储库(而不是从预构建的软件包)运行安装,您需要运行以下命令来安装phpBB的依赖项。

     

cd phpBB   php ../composer.phar安装

如果您没有Windows的Composer,则只需下载并安装exe on the official page

此后,您可以从主文件夹中启动流浪汉,它应该可以工作。