# MD for: https://www.mercadopago.com.ar/developers/es/docs/adobe-commerce/install-extension.md \# Install the extension You can install the official Mercado Pago extension in Adobe Commerce in two different ways: through the Adobe Commerce Marketplace or via Composer. Select the installation method that best suits your needs. ::::TabsComponent :::TabComponent{title="Installation via Adobe Commerce Marketplace"} You can install the Mercado Pago extension for your Adobe Commerce store at no cost through the Adobe Commerce store. To do this, follow these steps: 1\. Access the \[official Adobe Commerce store\](https://marketplace.magento.com/). In the search engine, type \*\*Mercado Pago Payment\*\* and click on the \[official extension\](https://commercemarketplace.adobe.com/mercadopago-adb-payment.html). 2\. In the extension options, open the \*\*Edition\*\* menu located on the right side of the screen and select the edition you need for the extension according to the platform you are using. 3\. Open the \*\*Your store version\*\* menu and select the type of version you need for your business. Currently you can choose the "2.4 (Adobe Commerce (cloud))" version. 4\. Click \*\*Add to cart\*\* to add the extension to the cart. 5\. Click on the cart located in the upper right part of the site and then click \*\*Proceed to Checkout\*\* to finalize your purchase. The official Mercado Pago extension is free of charge. 6\. To continue, you will need to log in with your Adobe Commerce account or create a new one. Once you are inside your Adobe Commerce account, you will be able to download the Mercado Pago extension and install it. ::: :::TabComponent{title="Installation via Composer"} You can install the official Mercado Pago extension for your Adobe Commerce store at no cost through the Composer dependency manager. > WARNING > > Before starting, make sure you have SSH access to your server and have Composer installed in your environment. Additionally, it is recommended to make a backup of your store and database before any changes. Follow these steps to install the Mercado Pago extension using Composer: 1\. In your \*\*terminal\*\* or \*\*cmd\*\*, execute the following command to download the Adobe Commerce extension using Composer: \`\`\`bash composer require mercadopago/adb-payment \`\`\` 2\. Then, execute the following command to install the extension: \`\`\`bash bin/magento setup:upgrade \`\`\` 3\. Next, execute the following command to compile the extension files: \`\`\`bash bin/magento setup:di:compile \`\`\` 4\. Finally, execute this command to clean the Adobe Commerce cache: \`\`\`bash bin/magento cache:clean \`\`\` :::AccordionComponent{title="Common installation troubleshooting"} \* \*\*Store in production mode:\*\* If you are installing the extension on a store that is in production mode, it will be necessary to regenerate the static files. You can do this by executing the following code. \`\`\`bash bin/magento setup:static-content:deploy \`\`\` \* \*\*Permission issues:\*\* If you encounter permission errors when accessing the store, you will need to renew the permissions. To do this, run the following command. \`\`\`bash chmod 777 -R var/ pub/ generated/ \`\`\` ::: Once the Mercado Pago extension installation is complete, you can proceed with the implementation configuration. ::: ::::