I am trying to install Composer and Drush on my Mac for my Drupal website, but am running into an issue whenever I try to actually run a Drush command.
I followed these instructions to download and install composer and Drush, however, when I go to run a Drush command I get an error saying Drush is not found.
I believe the main issue is that export PATH="$HOME/.composer/vendor/bin:$PATH"
does not work since my .composer
directory doesn't have a vendor
folder in it.
So somehow, when I ran brew install composer
there was no vendor
folder created, all that was created was a cache directory.
Why is the vendor folder missing after installing using brew?