问题描述
尝试创建新的laravel项目时,CLI上显示以下错误:
When trying to create a new laravel project, The following error appears on the CLI:
脚本php artisan进行了明确编译,处理了因错误而返回的post-install-cmd事件
Script php artisan clear-compiled handling the post-install-cmd event returned with an error
我正在使用最新版本的XAMPP v3.2.1和PHP 5.5.15并启用了mcrypt(通过发出命令php -m来确保这一点).我正在运行Windows 8.1
I am using the latest version of XAMPP v3.2.1 with PHP 5.5.15 and with mcrypt enabled (made sure of that by issuing the command php -m). And I am running windows 8.1
推荐答案
您需要先创建Laravel项目,如果您已经有一个目录,需要在终端中使用cd
命令进入该项目目录,例如cd myproject
.
You need to first create Laravel project and if you already have one you need to go to this project dir using cd
command in terminal for example cd myproject
.
现在您将能够运行任何工匠命令,例如,运行php artisan
将显示可用命令列表.
Now you will be able to run any artisan commands, for example running php artisan
will display you list of available commands.
这篇关于无法打开输入文件:artisan的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!