How to install extension in Magento 2

 How to Install Extension in Magento 2 With all dependency.

First you goes to following Path :- magenot_root/app/code/Module_Vendor/Module_Name/

And put your package Above path.

After your check composer.json file and check module dependency.

How to install module dependency :-


composer require  modulename/dependency_name


And Finally run below command :- 


php bin/magento s:up

php bin/magento s:s:d -f

php bin/magento c:c

php bin/magento c:f


THANKS.

Comments