Thursday, September 1, 2016

How to install frappe and erpnext by version ?

Install per-requirements. https://frappe.github.io/frappe/user/en/bench/guides/manual-setup.html2
Clone bench of v3.x and install bench using 'sudo pip install -e bench-repo'
then run following commands, hope it will helpful

bench init frappe-bench-v6 --frappe-branch v6.x.x
bench get-app --branch v6.x.x erpnext https://github.com/frappe/erpnext
bench frappe --install_app erpnext

1 comment:

  1. how to instal frappe
    Hello everyone today i will show you how to install ERPNEXT step by step

    **==> First of all you should make a new installation of Ubuntu 16 or 18 lts **
    ==> in my case i have Ubuntu 16.04 lts server installed on Virtualbox 6

    **==> i will use SSH to make this installation **
    ==> in your Virtualbox machine tape:
    ip a
    **==> to get your ip address **
    ==> i will use putty for SSH connexion

    ==> let’s move to Root account:

    sudo su
    ----- Test the internet connexion -----
    ping www.google.com 1
    ----- update and upgrade the system ------

    apt update
    apt upgrade

    ----- Fix Ip ------------
    iface enp0s6 inet static
    address 192.168.1.10
    netmask 255.255.255.0
    network 192.168.1.0
    broadcast 192.168.1.255
    gateway 192.168.1.1
    dns-nameservers 1.1.1.1 8.8.8.8

    ReplyDelete