Skip to content

Installing ERPNext 4

Pratik Vyas edited this page Feb 19, 2014 · 4 revisions

Install Pre-requisites

For Debian based system
sudo apt-get install python-dev build-essential git memcached vim screen mysql-server libmysqlclient-dev libxslt1.1 libxslt1-dev

Setup erpnext-bench

git clone https://github.com/frappe/erpnext-bench
cd erpnext-bench
./scripts/install.sh single [sitename dbname] # if you do not pass sitename and dbname, dbname is erpnext and sitename is erpnext.$hostname

Usage

cd erpnext-bench
./env/bin/frappe --sites_path sites --serve sitename

The administrator username is "Administrator" and password is "admin"

Migrating from ERPNext version 3

Make sure that you have updated your site for the latest version of 3.x.x and take a database backup.

git clone https://github.com/frappe/erpnext-bench
cd erpnext-bench
./scripts/install.sh migrate_3_to_4 /path/to/old/erpnext

Production deployment

TODO