<aside> 👌

**Install ERPNext Version-16-beta on Ubuntu 24.04

THIS IS BETA BUILD, DONT TRY TO USE IT FOR PROD NEEDS.**

</aside>

Step 1: Initial Setup

1.1. Update and Upgrade Packages

Update your package list and upgrade your installed packages to ensure you're starting with the latest versions.

sudo apt-get update -y
sudo apt-get upgrade -y

1.2. Create a New User

Create a new user for running the Frappe Bench.

sudo adduser [frappe-user]
usermod -a -G sudo [frappe-user]
su [frappe-user]
cd /home/[frappe-user]

Step 2: Install Prerequisites

2.1. Install Git

Git is required for version control and to clone repositories.

sudo apt-get install git

2.2. Install Python and Development Tools

Install Python 3.14 and its development tools.

sudo apt-get install python3-dev python3.14-dev python3-setuptools python3-pip

2.3. Install Python Virtual Environment

Set up a virtual environment for Python 3.14.

sudo apt-get install python3.14-venv