How to fix laravel is not Recognized as Internal and External Command Operable Program
168 views
Apr 1, 2025
Get the full source code of application here: Watch My Visual Studio Code IDE Setup Video For Fonts,Themes & Extensions https://youtu.be/Bon8Pm1gbX8 Hi Join the official discord server to resolve doubts here: https://discord.gg/cRnjhk6nzW Visit my Online Free Media Tool Website https://freemediatools.com/ Buy Premium Scripts and Apps Here: https://procodestore.com/
View Video Transcript
0:00
uh hello guys welcome to this video so
0:03
in this video I will show you how to fix
0:05
this error message uh when it comes if
0:08
you just type your larl in the terminal
0:11
and it will show this error message to
0:13
you that larl is not recognized as an
0:16
internal or external command so this
0:18
typically means you haven't installed
0:20
this larl inside your machine
0:23
so larl is a PHP framework
0:26
so the way to install larl is directly
0:30
can do this using composer which is a
0:32
dependency manager for your PHP
0:34
application so first of all if you
0:35
haven't installed composer you need this
0:38
dependency manager if you just type on
0:41
Google the very first link which comes
0:43
this is actually a dependency manager
0:45
for PHP so you just need to install or
0:48
download this I have already downloaded
0:50
this so it comes with this exe file here
0:53
if you are on windows so you just need
0:55
to run this exe file after the setup
0:58
file is very simple
1:00
and once it get
1:02
installs you
1:05
can search
1:07
here you will see this composer will if
1:12
you just go to start menu and just type
1:14
in
1:16
composer so by default it is stored
1:19
inside your uh C directory so this is
1:22
the full path here whatever is your
1:25
username then app data roaming composer
1:32
so inside the vendor folder all your
1:34
dependencies will be stored so here
1:38
inside the vendor folder all the third
1:40
party dependencies that you install for
1:42
your PHP applications will be stored but
1:45
direct path is you go to your C
1:49
directory and then whatever is your
1:51
username mine is
1:54
Asus so you just need to go
2:01
to this folder which is user and go to
2:03
your
2:11
username and right
2:13
here there is will be this folder Here
2:16
app data and just go to roaming
2:19
folder and then you will find out this
2:23
composer will be installed right here so
2:25
just you will see that this is the
2:28
composer folder
2:31
and
2:33
uh this is your bin folder here all the
2:37
dependencies will be stored so if you
2:39
can't access composer in the terminal so
2:42
because the command is very simple here
2:44
you just need it simple terminal for
2:48
this so if you write here composer dash
2:52
dash version if this response is not
2:55
coming then you need to add the composer
2:57
path in the environment variable
3:03
so just go to environment variable and
3:05
go to the
3:06
path and add that full path
3:10
here of
3:12
composer that I showed you just paste
3:15
the full
3:16
path in the environment variable so I
3:19
have already added
3:26
this so you can see composers
3:31
setup so just make sure that you add
3:34
this path and after that there is a
3:35
command here which you need to in do
3:42
this so I I've given the command in the
3:46
description of this video so just go to
3:49
your terminal and just write this
3:52
command composer Global require laral /
3:56
installer so we are globally installing
3:59
the Lar
4:01
CLI inside your machine using composer
4:04
you see composer Global require ll/
4:08
installer so just execute this command
4:11
and it will now fetch R laral and
4:15
install this inside your terminal so
4:19
this will hardly Take 5 to 10 seconds
4:22
and so once it is installed you will see
4:25
larl has been successfully installed on
4:27
your system and if you
4:30
want to access it using terminal you
4:32
will see this Lal is successfully added
4:35
this is the bat file so if you open
4:38
command line here and just type here
4:41
laral Das Das version so now it will
4:44
tell you laral installer which is
4:47
5.1.0 but if you want to access it
4:50
globally you need to add this ho in the
4:54
environment variable just make sure that
4:56
you add this
5:04
paste
5:06
and just make the changes and after that
5:09
if you open the command line just type
5:11
here laral D-
5:14
version so you will see that now the
5:17
command will directly
5:18
run globally so the globally the LL has
5:22
been installed on your machine so here
5:24
you can make your project so this is a
5:26
direct way of installing LL inside your
5:28
system using composer
5:31
so thank you very much for watching this
5:33
video and also check out my website free
5:36
mediat tools.com which contains
5:39
thousands of tools regarding audio video
5:41
and image and I will be seeing you in
5:43
the next video
#Programming