Is it possible to install v13 with the Easy Install script?

1. Either you can use: https://frappecloud.com/

**or follow the below steps that work for me in a vps**
**--On Ubuntu 18**

1. wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py
2. sudo python3 install.py --production --user frappe
3. export LC_ALL=C.UTF-8
4. sudo python3 install.py --production --user frappe
5. bench switch-to-branch version-13-beta frappe erpnext --upgrade
**--Get a utils error, and run the below**
6. sudo npm cache clean -f
7. sudo npm install -g n
8. sudo n stable
9. find -type d -name node_modules -prune -exec rm -rf {} \;
10. bench update --requirements
11. bench switch-to-branch version-13-beta frappe erpnext --upgrade
12. bench update --patch --no-backup
13. bench update --build --no-backup

--from "sudo npm cache clean -f" to "bench update --requirements" are from the below links
https://discuss.frappe.io/t/erpnext-installating/60906/5
https://discuss.frappe.io/t/error-cannot-find-module-graphlib/61530/4`Preformatted text`
6 Likes