Difference between revisions of "Centos 7 ERPNext Easy Install fix"

From vpsget wiki
Jump to: navigation, search
(Created page with "How to install ERPNext on Centos 7 Definitely we will show how to install erpnext on Centos 7 on a VPS. This should be really easy as per git info :https://github.com/fra...")
 
Line 18: Line 18:
 
Install depencies:
 
Install depencies:
 
  sudo yum groupinstall "Devevlopment Tools"
 
  sudo yum groupinstall "Devevlopment Tools"
  sudo yum install  python3  python3-devel python3-wheel
+
  sudo yum install  python3  python3-devel python3-wheel ansible
  
 
Install nodejs:
 
Install nodejs:
 +
 +
Please note during easy setup script you may also face issues. Using --verbose will show you more details  - you'll be able to view in details which exactly ansible playbook caused an issue and fix/edit or remove part of playbook in order to skip error and handle it manually.

Revision as of 22:39, 23 June 2020

How to install ERPNext on Centos 7

Definitely we will show how to install erpnext on Centos 7 on a VPS.

This should be really easy as per git info :https://github.com/frappe/bench#easy-install-script But for sure you may face many issues so we will show how to handle them easily.

Create user frappe and add to a wheel group first. If you on Centos mininal you'll require packages that may be already installed on non-mininal setup.

yum install sudo which nano

reLogin under user frappe and act via sudo.

su - frappe

Edit env:

nano /etc/environment
LANG=en_US.utf-8
LC_ALL=en_US.utf-8

Install depencies:

sudo yum groupinstall "Devevlopment Tools"
sudo yum install  python3  python3-devel python3-wheel ansible

Install nodejs:

Please note during easy setup script you may also face issues. Using --verbose will show you more details - you'll be able to view in details which exactly ansible playbook caused an issue and fix/edit or remove part of playbook in order to skip error and handle it manually.