frappe_docs
frappe_docs copied to clipboard
Ubuntu installation wasn't quite working
Running xubuntu 20.04, I had to do the following additional steps before proceeding with https://frappeframework.com/docs/user/en/installation#debian-ubuntu.
libssl1.0.0 is not part of the ubuntu repos after 18.04 anymore (https://askubuntu.com/a/1173621). It can be installed using
# https://packages.ubuntu.com/bionic/libssl1.0.0
wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl1.0/libssl1.0.0_1.0.2n-1ubuntu5.3_amd64.deb
sudo dpkg -i /home/tobias/Downloads/libssl1.0.0_1.0.2n-1ubuntu5.3_amd64.deb
And the installation of bench-repo didn't work because of "ERROR: launchpadlib 1.10.13 requires testresources, which is not installed", which can be solved by this
sudo apt install python3-testresources