Skip to main content

ERPNext Installation

ERPNext is a powerful, flexible ERP (Enterprise Resource Planning) system built on the Frappe framework, designed to streamline and manage all aspects of a business.

This is the following step to install ERPNext and other Apps:

Step 1: Download Payments App

First we need to install payment app, this app is required when setting up ERPNext. Execute following command to continue:

bench get-app payments

 

Step 2: Download ERPNext App

Next, we will download ERPNext app to the bench:

bench get-app --branch version-14 erpnext

Download any other app you may be interested in in a similar manner. For instance, if you need the Human Resource app to be installed, use the following command (Optional):

bench get-app hrms

 

Step 3: Install All App

To install downloaded app, you need to execute this command with site and the app name:

bench --site [site-name] install-app erpnext

Install all the other apps you downloaded in the same way. For example, if you downloaded the human resource app, use the below command to install it.

bench --site [site-name] install-app hrms

 

Step 4: Bench Start & Bench Migrate

After installing the app, we need to run bench start to startup our server. Run bench migrate to updates the site's state to the current available apps.