Skip to main content

Installing ERPNext on Ubuntu/Debian

Updated this week

ERPNext is a free and open-source based ERP (Enterprise Resource Planning) software. ERP software is used for easier management of a business. It is usually a set of integrated applications.

Prerequisites:

Installation

Update your system:

sudo apt update && sudo apt upgrade -y

Install ERPNext by running following commands:

git clone https://github.com/frappe/frappe_docker
cd frappe_docker
docker-compose -f pwd.yml up -d

After a couple of minutes, site should be accessible via browser:

http://server_ip:8080

Use below default login credentials to access the site.

Username: Administrator

Password: admin

Did this answer your question?