RxnCat83 / Password-Generator-Manager

0 stars 0 forks source link

Cannot install Local WordPress for Linux Ubuntu 24.04.1 LTS #2

Open RxnCat83 opened 2 months ago

RxnCat83 commented 2 months ago
  1. After doing my normal package updating, I tried to install Local WordPress for the installation package from the official website.

  2. After cd'ing into the downloaded file's directory, I ran this command: sudo dpkg -i local-9.0.5-linux.deb

  3. Here is the error message that is shown: Screenshot 2024-08-31 190013

  4. It appears that some of the dependencies that are needed are missing. I need to find out why they are missing and how to install them.

RxnCat83 commented 2 months ago

I was able to resolve the issue. The newest release of Ubuntu doesn't have the dependencies needed. I just had to install the needed dependencies as follows:

Here are the needed dependencies:

libtinfo5_6.4-2_amd64 libncurses5_6.4-2_amd64 libaio1_0.3.113-4_amd64 libnss3-tools

  1. Download libtinfo5_6.4-2_amd64 and then install the package: Download: curl -O [http://launchpadlibrarian.net/648013231/libtinfo5_6.4-2_amd64.deb 40] (http:// launchpadlibrarian.net/648013231/libtinfo5_6.4-2_amd64.deb) Install: sudo dpkg -i libtinfo5_6.4-2_amd64.deb

    1. Download libncurses5_6.4-2_amd64 and install the package: Download: curl -O [http://launchpadlibrarian.net/648013227/libncurses5_6.4-2_amd64.deb 26] (http://launchpadlibrarian.net/648013227/libncurses5_6.4-2_amd64.deb) Install: sudo dpkg -i libncurses5_6.4-2_amd64.deb
  2. Download libaio1_0.3.113-4_amd64 and install the package: Download: curl -O [http://launchpadlibrarian.net/646633572/libaio1_0.3.113-4_amd64.deb 29] (http://launchpadlibrarian.net/646633572/libaio1_0.3.113-4_amd64.deb) Install: sudo dpkg -i libaio1_0.3.113-4_amd64.deb

  3. Install libnss3-tools Install: sudo apt install libnss3-tools

Now, Local WordPress is installed and running just fine!

Screenshot from 2024-09-01 19-31-58