Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install lubicu66 on Ubuntu 20.04?

I am trying to install Ezra-project on Ubuntu 20.04. When I run the install it fails and says:

dpkg: dependency problems prevent configuration of ezra-project:
 ezra-project depends on libicu66; however:
  Package libicu66 is not installed.

I tried installing libicu66 with

    sudo apt install libicu66

But it says

Package libicu66 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libicu66' has no installation candidate

Is libicu66 available for Ubuntu 20.04? If so, please could someone direct me to where to download it from?

like image 949
nicolejane33 Avatar asked Dec 11 '20 11:12

nicolejane33


People also ask

How do I install a package in Ubuntu?

Install Packages: To install a package, locate the package via the Not Installed Packages package category, by using the keyboard arrow keys and the ENTER key. Highlight the desired package, then press the + key. The package entry should turn green, indicating that it has been marked for installation.

How do I remove Windows and install Ubuntu?

If you want to remove Windows and replace it with Ubuntu, choose Erase disk and install Ubuntu. All of the files on the disk will be deleted before Ubuntu is put on it, so make sure you have backup copies of anything you wanted to keep. For more complicated disk layouts, choose Something Else.


1 Answers

I faced same problem when i tried to install couchdb. The solution i found was installing it manually. Go to https://www.ubuntuupdates.org/package/core/focal/main/base/libicu66 and download the proper version for your CPU architecture. It could be done with wget http://security.ubuntu.com/ubuntu/pool/main/i/icu/libicu66_66.1-2ubuntu2_[YOUR_CPU_ARCHITECTURE].deb

Then in the same folder use sudo apt update && sudo dpkg -i libicu66_66.1-2ubuntu2_[YOUR_CPU_ARCHITECTURE].deb

like image 150
Capp Andy Akendegue Avatar answered Oct 09 '22 19:10

Capp Andy Akendegue