-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Easy Install Support for Ubuntu 20.04 LTS #997
Comments
@kevinpthorne, seems like Can you try modifying the playbook to use the new package? That should be a step ahead for 20.04 LTS support. |
@Alchez I'll give that a shot when I get the chance. |
Changing
MariaDB does not have a release for Focal on MariaDB 10.2. Is Frappe compatible with MariaDB 10.3+? |
I've been using Frappe/ERPNext with MariaDB 10.3.22, and I haven't faced any problems so far. 10.3 is actually what Frappe recommends too while installing Bench. |
Awesome! Would it be too adventurous to step up to MariaDB 10.5? If MariaDB follows semantic versioning, 10.5 should work like any 10.x installation. |
It should definitely be tested out in a dev environment first, but is there a specific improvement you were looking for in 10.5? Otherwise, bumping versions (even if minor) could open up a can of worms with little gain in a system as large as an ERP 😄 |
I like shiny new things and trying to stay ahead of the curve! However, you bring up a good point since bench does have to support a fairly bulky system. I will look into editing those |
That is definitely important to keep improving the application, but in Frappe's case, stability will have to take precedence over improving the tech-stack, so all new contributions will have to be tested thoroughly.
Yeah, I think @gavindsouza can help you out better there, he's been working on the playbooks. |
Regarding the platform.dist() - we can use |
Hi demelv : some other mechanism has to be sorted out to solve this issue. |
@kevinpthorne I have been working with mariadb 10.5 with ubuntu 20.04 so far so good. I did not see any anomalies. For installation and getting through easy install script follow the steps in the following link : |
You can check this guideline for a step by step installation and run for Production |
@ghulamostafa, I think you should add the differences from your article to the official wiki page here. That'll be easier to locate over the web as well. |
Issue: Feature Request
I had some fun attempting to do a production installation of bench on a fresh Ubuntu 20.04 LTS with Python 3.8 this morning. Yes, Ubuntu 20.04 is still very VERY new.
To reproduce
As stated in Bench README:
platform.dist()
removed in Python 3.8Python 3.8 removed finally removed the deprecated
platform.dist()
method. This has been deprecated since Python 2.6. Although changinginstall.py:100
tocurrent_dist = ('Ubuntu', '20.04', 'focal')
easily fixed that issue. I grabbed that running
platform.dist()
in a Python 2 console.libssl1.0-dev
unavailable in Ubuntu 20.04 LTSThe easy install script kept going for some time until it reached this:
libssl1.0-dev
looks to be unavailable on Ubuntu 20.04 APT repos.I am currently looking to see if
libssl1.0-dev
is supposed to be included into Focal repositories at a later date.Are there plans to support Ubuntu 20 LTS? If so, when would this be possible?
The text was updated successfully, but these errors were encountered: