richard
richard

Reputation: 2053

laravel homestead cannot create project

I have download homestead box manually, and add it to vagrant like: "vagrant box add laravel/homestead virtualbox.box".
Then I run command "vagrant init laravel/homestead" to create a new development environment. Now I can start the virtual machine by "vagrant up". I login into the new virtual machine by "vagrant ssh". I run command "composer create-project laravel/laravel new-site" to create new project, but it always give error that authentication required (packagelist.org)

Upvotes: 0

Views: 377

Answers (1)

Hiren Gohel
Hiren Gohel

Reputation: 5041

Do you setting up your SSH keys in the Homestead.yaml file?? It's necessary to add this SSH keys.

For that you can also prefer this: https://laravel.com/docs/5.1/homestead#installation-and-setup

May be it's helpfull for you..!!

Upvotes: 2

Related Questions