#Install-a-Specific-Release-of-Frappe

Hi Everyone👋, I am still new to Frappe Framework, so please help me in this🤔. I want to install frappe version 15.0.0, but it shows me errors when I define the version like that and whenever I use this command {bench init frappe-bench --frappe-branch version-15}, it installs the latest release (15.5.0), so any solutions?

Use this

bench init /home/frappe/frappe-bench --frappe-path https://github.com/frappe/frappe --frappe-branch version-15 --python python3
2 Likes

Thank you, I will try it now.

HI @JullunarAlomari:

As @mohitchechani well said above, --frappe-branch is the key.

Use this to install a specific release.

bench init v15_4_1 --frappe-branch v15.4.1

Other apps inside the bench can be downloaded with a specific release too. This way:

bench get-app erpnext --branch v15.4.0

Hope this helps.

1 Like

Thank you so much for your help.