The other day I was trying to install Hyperland on Arch Linux. When I used the Pacman command to install it, it threw a 'target not found' error.
[abhishek@itsfoss ~]$ sudo pacman -S hyperland
[sudo] password for abhishek:
error: target not found: hyperland
[abhishek@itsfoss ~]
That was a surprise because I knew that Hyperland was available.
The fix in my case was to update the system and in most cases, it fixes this problem.
sudo pacman -Syu
Here, the local package database is out of sync. I needed to update the cache. Updating the system is also suggested here.
That's what fixes this error in most cases. However, there could be a few other reasons why you see this error. Let me discuss them in detail here.
Fix: Update the system
Arch Linux is a rolling release distribution and it provides updates quite frequently. If you don't update the system every few days, your local package database will be out of sync with the remote mirrors and you'll have trouble installing packages.
The local package database only keeps the metadata of the package like version number, repository URL to get the package from etc.
When you search for a package, pacman provides the search result that says that the package is available. However, the package has an older version number in your local database. When pacman searches for the package in a remote repository (to get the actual packages), it doesn't find the older version URL anymore.
This is what causes the 'target not found' error.
The fix is to update the local database. That could work with pacman -Sy
, however, it is recommended to update the entire Arch Linux system to avoid dependency conflicts, among other things.
sudo pacman -Syu
In my case, Arch is installed on my secondary system. And since I could not use it for a week or so, the system was outdated. Once I updated it, I could install Hyperland.
Other suggestions to fix 'target not found' error
Here are a few tips on fixing this error if the above method did not fix it for you.
Double check the package name
It may seem elementary, my dear Watson, but often people just type the package name incorrectly.
Linux is case sensitive and packages are usually named in lowercases. So if you a popular tool is Flameshot, it's package name is likely to be flameshot.
In some rare cases, there could be confusion whether it is l
or I
or 1
.
Basically, ensure that the name you have entered the package name is correc.
See if the package is available in the repositories
Arch Linux has a vast number of packages in its repositories. But that does not mean it has every possible Linux packages.
Go to the official Arch Linux package website:
Here, enter the package name and see if the package is available. If yes, which repository it is and on which device it is available.
x86_64
is for Intel architecture and any includes ARM architecture is for Raspberry Pi like devices.
Ensure that it's not an AUR package
Arch User Repository (AUR) is the additional community supported platform that provides newer packages.
Now, there are multiple ways to use AUR packages but pacman is not one of them.
Check if the package you are trying to install is an AUR package. Check the official Arch repository first, as explained above. If it's not there, then check the AUR page.
If it's an AUR package, you'll have to use yay or some other AUR helper. You cannot use pacman to install AUR packages.
Were you able to fix the issue?
Updating the system is what fixes this issue in most cases. In some rare instances, there could be other reasons and I have mentioned some suggestions for them.
Now it's your turn. Let me know in the comment section if you were able to fix this issue or not.
from It's FOSS https://ift.tt/kboRqVH
via IFTTT
Tidak ada komentar:
Posting Komentar