install ERPNext software on Debian 9
Prerequisites A server running Debian 9. A non-root user with sudo privileges. Getting Started Before starting, it is recommended to update your package repository to the latest version. You can do this by running the following command: sudo apt-get update -y sudo apt-get upgrade -y Next, restart the system to apply all the changes. Install Dependencies ERPNext requires Python version 2.7 in order to work properly. You can install Python and other required packages by running the following command: sudo apt-get install python-minimal git build-essential python-setuptools python-dev libffi-dev libssl-dev -y You will also need to install Python's pip tool to install Python dependencies. You can do this by running the following command: wget https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py Next, install ansible using the pip command: sudo pip install ansible Install Node.js, Redis and Nginx By default, the latest version of the Node.js is not available in Debian 9. So you w...
Comments
Post a Comment