1
votes

Ive been having a issue with installing laravel homestead, I keep getting this error message: Everytime I do vagrant up

me-MacBook-Pro:Homestead me$ vagrant up /Users/me/Homestead/Vagrantfile:17:in read': No such file or directory - /Users/me/.homestead/Homestead.yaml (Errno::ENOENT) from /Users/me/Homestead/Vagrantfile:17:inblock in '

I have the gen key. I know it's installed.

This is what my Homestead.yaml file looks like:

ip: "198.168.10.10" memory: 2048 cpus: 1

authorize: /Users/me/.ssh/id_rsa.pub

keys: - /Users/me/.ssh/id_rsa

folders: - map: /Users/me/Homestead/Projects to: /home/vagrant/Sites

sites: - map: laravel.dev to: /home/vagrant/Sites/laravel-basics/public

variables: - key: APP_ENV

1
Here is a nice tutorial for installing homestead 2.0 laracasts.com/lessons/say-hello-to-laravel-homestead-twoPᴇʜ
Thanks. Is this how it should look export PATH="$PATH:~/.composer/vendor/bin" ?user3053151
Depends on your host OS. For Linux edit ~/.profile and add export PATH=$PATH:~/.composer/vendor/bin to add it permanently.Pᴇʜ

1 Answers

-1
votes

Add the path ~/.composer/vendor/bin/ to vagrant path file or automatically export PATH="~/.composer/vendor/bin/". It will fix it.

After that you have to use vagrant up