Ok, I did that and it works:
nano ~/.bash_profile
And paste
export PATH=~/.composer/vendor/bin:$PATH
do source ~/.bash_profile
and enjoy 😉
Important: If you want to know the difference between bash_profile and bashrc please check this link
Note: For Ubuntu 16.04 running laravel 5.1, the path is: ~/.config/composer/vendor/bin
On other platforms: To check where your Composer global directory is, run composer global about
. Add /vendor/bin
to the directory that gets listed after “Changed current directory to …” to get the path you should add to your PATH
.
Related Posts:
- How do I pause my shell script for a second before continuing?
- Cp: target is not a directory
- In the shell, what does ” 2>&1 ” mean?
- What is the preferred Bash shebang?
- count() parameter must be an array or an object that implements countable in laravel
- Read a file line by line assigning the value to a variable
- How to compare strings in Bash
- How to decode Seagate’s hard drive date code in a Bash script
- How do I parse command line arguments in Bash?
- How to make “if not true condition”?
- ‘\r’: command not found – .bashrc / .bash_profile [duplicate]
- Bash script and /bin/bash^M: bad interpreter: No such file or directory
- -bash: syntax error near unexpected token `newline’
- An “and” operator for an “if” statement in Bash
- How can I check if a directory exists in a Bash shell script?
- PDOException SQLSTATE[HY000] [2002] No such file or directory
- Echo newline in Bash prints literal \n
- Bash script and /bin/bash^M: bad interpreter: No such file or directory [duplicate]
- Passing parameters to a Bash function
- How can I use “:” as an AWK field separator?
- An “and” operator for an “if” statement in Bash
- “while :” vs. “while true” [duplicate]
- What is the meaning of 2 in 2> /dev/null
- How to reload .bash_profile from the command line?
- What is the purpose of “&&” in a shell command?
- Bash scripting missing ‘]’
- How do I compare two string variables in an ‘if’ statement in Bash?
- Expected status code 200 but received 500
- Whats the point of running Laravel with the command ‘php artisan serve’?
- Return value in a Bash function
- How can I count all the lines of code in a directory recursively?
- How can I kill a process by name instead of PID, on Linux?
- Which characters need to be escaped when using Bash?
- laravel updateOrCreate method
- How to listen messageSent event in laravel 5.5
- Delete all local git branches
- How can I get the source directory of a Bash script from within the script itself?
- cp: missing destination file operand after
- BASH Syntax error near unexpected token ‘done’
- Shell: How to call one shell script from another shell script?
- bash assign default value
- What does -z mean in Bash?
- How can I match a string with a regex in Bash?
- echo that outputs to stderr
- How to define hash tables in Bash?
- How to escape single quotes within single quoted strings
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- Simple logical operators in Bash
- When to generate a new Application Key in Laravel?
- Bash syntax error: unexpected end of file
- Create timestamp variable in bash script
- Laravel 5.2 Storage::makeDirectory($dir) is not creating directory
- How to convert a string to lower case in Bash?
- How do I edit $PATH (.bash_profile) on OS X?
- Binary Data Posting with curl
- Check number of arguments passed to a Bash script
- How to modify a global variable within a function in bash?
- Trying to get property of non-object – Laravel 5
- How to specify the private SSH-key to use when executing shell command on Git?
- How do I remove the file suffix and path portion from a path string in Bash?
- Sorting data based on second column of a file
- Fast ping sweep in python
- Speed up rsync with Simultaneous/Concurrent File Transfers?
- Multi-dimensional arrays in Bash
- Variable interpolation in the shell
- Laravel 5 Class ‘Collective\Html\HtmlServiceProvider’ not found on AWS
- Laravel 5 MethodNotAllowedHttpException in RouteCollection.php line 201:
- What’s the meaning of the parameter -e for bash shell command line?
- How do I add a newline using printf?
- zip error – Nothing to do
- How to Create Multiple Where Clause Query Using Laravel Eloquent?
- How to remove last n characters from a string in Bash?
- Meaning of “[: too many arguments” error from if [] (square brackets)
- Check existence of input argument in a Bash shell script
- Associative arrays in Shell scripts
- How to split one string into multiple strings separated by at least one space in bash shell?
- Make a Bash alias that takes a parameter?
- Copy multiple files from one directory to another from Linux shell
- cURL request in Laravel
- No query results for model [App\Products] Laravel
- curl: no URL specified for restful api
- firebase-tools “-bash: firebase: command not found”
- How can I do a recursive find/replace of a string with awk or sed?
- source command not found in sh shell
- Running bash script from within python
- How to run C program on Mac OS X using Terminal?
- bash : cd : too many arguments
- Bash mkdir and subfolders
- Linux Bash: Move multiple different files into same directory
- How to get the first line of a file in a bash script?
- How to open Emacs inside Bash
- bash which OR operator to use – pipe v double pipe
- What is the difference between double and single square brackets in bash?
- How to create a UUID in bash?
- Check if array is empty in Bash
- Run an interactive bash subshell with initial commands without returning to the (“super”) shell immediately
- bash: print stderr in red color
- Clean way to write complex multi-line string to a variable
- Standard place for user defined bash_completion.d scripts?