Install guide for Laravel Valet Linux
ValetA quick guide to installing Laravel Valet on Linux:
composer global require cpriego/valet-linux lang-bash
Valet should be run from the path. The local path, not the global path. Use these instructions to update your path:
echo 'export PATH="$PATH:$HOME/.config/composer/vendor/bin"' >> ~/.bashrc lang-bash
The first time you run Valet you might get this error:
user@host:~/Code$ valet install You have missing Valet dependencies: - jq - xsel - certutil lang-bash
Do this:
sudo apt-get install network-manager libnss3-tools jq xsel lang-bash
Final step:
mkdir ~/Code valet park lang-bash