Cant install laravel on kali linux

泄露秘密 提交于 2019-12-25 08:47:46

问题


These codes which I have written terminal

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"

mv composer.phar /usr/local/bin/composer

Composer is working.

After that I downloaded laravel without error.

composer global require "laravel/installer"

But When I write ~/.composer/vendor/bin/laravel in terminal it gives me error

bash: /root/.composer/vendor/bin/laravel: No such file or directory

Where is my problem?I dont get it.

EDIT:

find /root/ -name laravel

./.config/composer/vendor/bin/laravel
./.config/composer/vendor/laravel
./.config/composer/vendor/laravel/installer/laravel
./.cache/composer/files/laravel

回答1:


You can simply run composer create-project --prefer-dist laravel/laravel blog to install Laravel in blog directory.

Then you go into blog directory and run php artisan serve. Now your Laravel should already be online.

Check this document for the Laravel installation https://laravel.com/docs/5.3/#installing-laravel.



来源:https://stackoverflow.com/questions/40357524/cant-install-laravel-on-kali-linux

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!