Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKonstantin Lopatin
29,193 PointsHomestead command not found issue
Hi everyone,
I'm experiencing some weird issues with homestead. When I run the homestead command, I get a "command not found" response. As I understand the problem is in the path, because '~/.composer/vendor/bin/homestead' works just fine.
When I try to adjust the path in the .bash_profile file by adding a line: export PATH="~/.composer/vendor/bin/homestead"
everything stops working, even the basic commands such as 'ls' or 'cd'.
What am I doing wrong? There must be a way not to write the whole path to homestead every time, and still keep everything else working.
1 Answer
Derrick Koon
8,353 PointsBe sure to append the $PATH variable either to the end or beginning of the export string.... example export $PATH:~/.composer/vendor/bin
Konstantin Lopatin
29,193 PointsKonstantin Lopatin
29,193 PointsHi Derrick
I guess I'm just doing something completely wrong as it doesn't work. I can only use homestead command with full path. Can you explain what exactly are you doing to make it work?
Konstantin Lopatin
29,193 PointsKonstantin Lopatin
29,193 Pointsapparently I just forgot to reboot terminal after saving. My apologies, everything works:)