How to Install ERPNext on Windows 10
ERPNext is an open-source ERP software that helps businesses manage their daily business processes like sales, inventory, accounting, and much more. In this tutorial, we will guide you through the process of installing ERPNext on Windows 10 operating system.
Requirements
Before starting with the installation process, you must have the following requirements on your system:
- Windows 10 operating system
- 64-bit CPU architecture
- Python version 3.6 or higher (64-bit)
- MySQL version 5.7 or higher (64-bit)
- Node.js version 8.x or 10.x (64-bit)
Installation Steps
Follow the below steps to install ERPNext on your Windows 10 system:
Open the Command Prompt as an Administrator by pressing the
Windows key + Xon your keyboard and then selectingCommand Prompt (Admin)from the pop-up menu.Install Node.js by visiting the official Node.js website and download and install the 64-bit version compatible with your system.
Install Python by visiting the official Python website and downloading the latest 64-bit version.
Install MySQL by visiting the official MySQL website and downloading the latest 64-bit version.
Create a MySQL database for ERPNext by typing the following command in the Command Prompt:
mysql -u root -pEnter the root password when prompted and then create a database with the following command:
create database erpnext;Download the latest version of ERPNext by visiting the official ERPNext website and selecting the "Self-Hosted" option. Extract the downloaded
.zipfile to your desired location.Navigate to the extracted ERPNext folder in the Command Prompt by using the
cdcommand:cd C:/Path/to/extracted/ERPNext/folderInstall ERPNext with the following command:
bench setup requirementsInstall ERPNext by running the following command:
bench new-site site1.localConfigure the ERPNext site by opening the
site_config.jsonfile located in thesitesfolder of your ERPNext installation directory. Update the database name, database user, and database password fields with your MySQL credentials.Start the ERPNext server by running the following command:
bench serve
The ERPNext site is now accessible at http://localhost:8000/.
Congratulations! You have successfully installed ERPNext on your Windows 10 system. You can now use ERPNext to manage your business processes.