Hi, I want to test Laravel for a bit, but installation seems impossible. I have no idea what's going on:
Attempt 1 laravel.phar: laravel.phar is installed in my /usr/local/bin. I run laravel new blog in a directory of choice and I get an error: "-bash: /usr/local/bin/laravel: Permission denied"
Attempt 2: composer: I have composer installed and run: composer create-project laravel/laravel your-project-name --prefer-dist I get an error: "[InvalidArgumentException] Could not find package laravel/laravel"
Attempt 3: composer with a download from github: I locate the installed files in a folder of choice and run: composer install. I get an error: "Your requirements could not be resolved to an installable set of packages.
Problem 1
What am I missing here?
Thanks!
with attempt 1, it seems that you may need to change the permission of the file with something like:
chmod 755 /usr/local/bin/larave
Hi jgarifuna,
I tried that already, interesting. I can't find a way to get Laravel running on my machine :(.
Same here, Try to test laravel, doing the step by step quickstart. . But it stuck in the first step! It won't install via composer and it won't instal via Laravel Installer. I copy/past the command line into my xamp console.
composer create-project laravel/laravel NewProject
Did you made sure you have the correct permissions or running as sudo to create the files necessary for laravel ?
jgarifuna said:
with attempt 1, it seems that you may need to change the permission of the file with something like:
chmod 755 /usr/local/bin/larave
It's work for me , am use 10.9.4.
http://blog.jboyd.co/quickly-setup-laravel-to-work-in-mamp/
Step 1: change directory to where you want install
cd /whatever directory
Step 2: Install Composer
curl -sS https://getcomposer.org/installer | php
Step 3: Install Laravel 4
php composer.phar create-project laravel/laravel
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community