Could not open input file: artisan问题解决
分类:PHP
阅读 (10,066)
Add comments
5月 172016
在命令行执行php artisan key:generate时提示Could not open input file: artisan错误
开始以为artisan是php的命令,其实是Laravel的命令
解决方法就是cd到Laravel项目所在的目录,再执行php artisan命令,如下:
1 2 |
G:\>cd project/web/laravel/blog G:\Project\web\laravel\blog>php artisan help |
运行环境:Windows7+php5.6+Laravel5