Install Local by Flywheel on Ubuntu 24.04

If you’re trying to install Local by Flywheel on Ubuntu 24.04, you might encounter dependency issues due to changes in package availability. This guide provides a step-by-step process to ensure a smooth installation.


Step 1: Download Required Dependencies

Local by Flywheel requires specific libraries that are not included in the default Ubuntu 24.04 repositories. Follow these steps to install them:

Install libncurses5
  1. Download the libncurses5 package:
   wget http://launchpadlibrarian.net/648013227/libncurses5_6.4-2_amd64.deb
  1. Run the following command to install it:
   sudo dpkg -i libncurses5_6.4-2_amd64.deb
Install libtinfo5
  1. First, download libtinfo5:
   wget http://launchpadlibrarian.net/648013231/libtinfo5_6.4-2_amd64.deb
  1. Then, install it:
   sudo dpkg -i libtinfo5_6.4-2_amd64.deb
Install libaio1
  1. Download the required package:
   wget http://launchpadlibrarian.net/646633572/libaio1_0.3.113-4_amd64.deb
  1. Install it with:
   sudo dpkg -i libaio1_0.3.113-4_amd64.deb
Install libnss3-tools
  1. To complete the dependency setup, install libnss3-tools using this command:
   sudo apt install libnss3-tools

Step 2: Download Local by Flywheel

Visit the Local by Flywheel website and download the latest .deb file for Linux. Save it in your Downloads folder for easy access.


Step 3: Install Local by Flywheel

Navigate to the directory where you saved the .deb file, and execute this command:

sudo dpkg -i local-<version>-linux.deb

Replace <version> with the actual version number of the file, for example, 9.1.0.


Step 4: Resolve Dependency Issues

If an error occurs, such as “dependency problems prevent configuration,” resolve it by running:

sudo apt --fix-broken install

This command fixes unresolved dependencies and completes the installation.


Step 5: Launch Local by Flywheel

After the installation, you can open the application by searching for “Local” in your system’s application menu. Alternatively, launch it from the terminal:

local

Troubleshooting Tips

  1. Missing Dependencies: Double-check package versions and download the correct ones from trusted sources such as Launchpad.
  2. Broken Package Manager: If your package manager gets stuck, run:
sudo apt-get clean && sudo apt-get update

Conclusion

By following these steps, you should have Local by Flywheel installed and working on your Ubuntu 24.04 system. This setup allows you to manage and develop WordPress sites locally with ease. For additional assistance, explore the Local by Flywheel community forums.

Get started today and streamline your WordPress development workflow. Happy coding! 🚀

Scroll to Top