i tried to installl bench easy install on ubuntu 18 ,
i got this message :
Sorry, the installer doesn’t support ubuntu 18. Aborting installation!
Install on ubuntu 16 instead
Raise an issue here .
Also any screenshots, logs would help.
Alternatively, try these methods:
NOTE:
1). Clean install on Ubuntu
2). User is bench with sudo privileges
3). Installed on Virtualbox Virtual machines
Login to your Local User
Prerequisites
Ubuntu 17.XX or 18.XX server instance.
sudo apt update
sudo apt -y upgrade
Install Development Tools
ERPNext needs Python version 2.7 to work. Install Python 2.7.
sudo apt -y install python-minimal
You should be able to verify its version.
python -V
Install a few more dependencies.
sudo apt -y install git build-essential python-se…
Note : If you’re installing using this method, you will have to switch to production.
@ahmed-madi it works perfect my friend …
i was thinking about updating the Ansible playbook
return success
def install_prerequisites():
# pre-requisites for bench repo cloning
run_os_command({
'apt-get': [
'sudo apt-get update',
'sudo apt-get install -y git build-essential python3-setuptools python3-dev libffi-dev'
],
'yum': [
'sudo yum groupinstall -y "Development tools"',
'sudo yum install -y epel-release redhat-lsb-core git python-setuptools python-devel openssl-devel libffi-devel'
]
})
install_package('curl')
install_package('wget')
install_package('git')
install_package('pip3', 'python3-pip')
1 Like