bkm
August 14, 2020, 5:19pm
1
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
glz
August 14, 2020, 6:46pm
2
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.
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 ?
bkm
April 12, 2021, 2:07pm
7
Ahmed.Khater:
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:
Okay,
I promised I would post the steps I used to get this done and here they are:
**On Edit: found a typo in the commands for installing the prerequisites before running install.py. Corrected in this post now. 4/19/2021
**EDIT Again: improved/changed the steps to add the pre-install of redis server in order to also solve a problem with the redis.conf file that causes ERPNExt install failures on some Ubuntu 20.04 images. Not all images are affected this way but these extra steps …
Hope this helps.
~BKM