<aside> 👌
**Install ERPNext Version-16-beta on Ubuntu 24.04
THIS IS BETA BUILD, DONT TRY TO USE IT FOR PROD NEEDS.**
</aside>
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
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]
Git is required for version control and to clone repositories.
sudo apt-get install git
Install Python 3.14 and its development tools.
sudo apt-get install python3-dev python3.14-dev python3-setuptools python3-pip
Set up a virtual environment for Python 3.14.
sudo apt-get install python3.14-venv