私は非常に新しく、コマンドラインの操作に不満を抱いています。私は現在、私のPHPアプリケーションで使用するlaravelをインストールしようとしています。私は作曲家をインストールしましたが、今はlaravelをインストールしようとしています。Laravelのインストールと実行
私が最初に私が持っているという点でlaravelためdocumentationの指示に従うことを試みている:
- 設置作曲
- は
composer global require "laravel/installer"
- を走ったが
laravel new blog
を実行するために失敗しました:-bash: laravel: command not found
次に私はララカストに従おうとしましたvideo:
作曲- は
composer global require "laravel/installer"
を走ったのvim〜/ .bashrcのを開き、
- を追加
laravel new blog
を実行するために失敗しました:-bash: laravel: command not found
export PATH="$HOME/.composer/vendor/bin:$PATH"
laravelに加えて、まだavailiableされていない、ときに私bashrcファイルに戻って、私は次の通知を受け取ります:
Found a swap file by the name "~/.bashrc.swp"
owned by: Shawn dated: Wed Jun 21 16:01:37 2017
file name: ~Shawn/.bashrc
modified: YES
user name: Shawn host name: Shawns-MBP.domain
process ID: 39328
While opening file "/Users/Shawn/.bashrc"
dated: Wed Jun 21 16:19:11 2017
NEWER than swap file!
(1) Another program may be editing the same file. If this is the case,
be careful not to end up with two different instances of the same
file when making changes. Quit, or continue with caution.
(2) An edit session for this file crashed.
If this is the case, use ":recover" or "vim -r /Users/Shawn/.bashrc"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file "/Users/Shawn/.bashrc.swp"
to avoid this message.
このプロセスでは、私は非常に混乱しています。何がうまくいかないのか、それが他の人にはうまくいくのかという理由で私の頭を覆すことはできませんが、laravelを正しくインストールできないようです。
既存のファイルを追加して、作者のパスを追加してください:それを再実行することを忘れないでください。あるいは単にloggoffを実行して再度ログインしてください。 –
また、端末にComposer create-projectコマンドを発行してLaravelをインストールすることもできます(https://laravel.com/docs/5.4/installation#installing-laravel) 作者create-project --prefer-dist laravel/laravel blog – manian