Skip to content

Instantly share code, notes, and snippets.

@alyjee
Created August 4, 2020 11:55
Show Gist options
  • Save alyjee/b650ebe8b6dc6d5598b0213ea7f4222e to your computer and use it in GitHub Desktop.
Save alyjee/b650ebe8b6dc6d5598b0213ea7f4222e to your computer and use it in GitHub Desktop.
Easy Install Script for Frappe ERPNext
# Pls follow below step to get install ERPNext Version 12.
# I have installed fresh ERPNext 12 on Ubuntu 18.0.4LTS on Windows Subsystem Linux
# Ran the below commands
sudo apt-get update && upgrade
# Rebooted server
sudo mkdir -p /run/dbus
sudo service dbus start
sudo apt-get install python3-setuptools python3-minimal redis-server build-essential
# created user netmanthan
sudo adduser netmanthan # (Adding a new user erpnext)
sudo usermod -aG sudo netmanthan # (giving proper permission)
su netmanthan # (login as erpnext user)
# Download the installation script by running below command:
sudo wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py
sudo -H python3 install.py --production --site netmanthan.local --user netmanthan
# This will install the ERPNEXT. After this I have updated the bench by running below command:
cd erp_bench/
bench update
@ShahzadNaser
Copy link

ShahzadNaser commented Aug 14, 2020

There might be an issue accord on updating to version 13

that could be resolve using following command

error semver@7.3.2: The engine "node" is incompatible with this module. Expected version ">=10". Got "8.17.0"
error Found incompatible module.

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt install -y nodejs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment