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

Wanting to know if it is possible yet to install the latest cut of v13 ERPNext using the Easy Install script?

I wanted to play with it in production mode without doing a developer install.

If it is possible, what would that command line look like?

Thanks,

BKM

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

Thanks for this.
Used it to test it out.

Thankyou for this guide.
It has worked for me.

ref…

when i
sudo python3 install.py --production --user frappe
this error appers to me
ambiguous option: --frappe could match --frappe-repo-url, --frappe-branch
can you advice me ?

Yes. This is an old thread that was started BEFORE v13 was released as an official production package. Anything you read here in this particular post/thread is very likely to be wrong.

Please now use the proper setup of a new v13 system as described here:

Hope this helps.

~BKM