我試圖在windows中安裝laravel。在composer.phar,打開它在MSDOS,我輸入以下命令將文檔的建議:無法安裝laravel
composer global require "laravel/installer=~1.1"
,但我得到以下錯誤:
Could not open input file: '*
我試圖在windows中安裝laravel。在composer.phar,打開它在MSDOS,我輸入以下命令將文檔的建議:無法安裝laravel
composer global require "laravel/installer=~1.1"
,但我得到以下錯誤:
Could not open input file: '*
首先,你必須安裝composer
假設您使用xampp
作爲網絡服務器,而您的網絡服務器目錄爲C:\xampp
。
下面是步驟:
Step 01: open command line tools and change your directory to webserter using this command
cd C:\xampp\htdocs
Step 02: run this command
composer create-project laravel/laravel projectname
這裏更換projectname
與您的實際項目名稱。
如果已經安裝了作曲家在不同的目錄(不是在C:盤),
Step 1: change directory to location where composer.json exist.
eg: D:\xampp\htdocs\project\composer.json then change to D:\xampp\htdocs\project
Step 2: command=>php composer.phar install
我已經在C驅動器中安裝了Composer。 – micky
你的操作系統是什麼? –
@Md。 Sahadat Hossain windows 7 – micky