Trying to install papyros on arch linux.

Displays an error when typing:

$ pacman -S papyros-shell Не найдена цель papyros-shell 

How to fix it?

    1 answer 1

    as written here , it is necessary:

    1. add to /etc/pacman.conf (above default repositories):

       [papyros] SigLevel = Never Server = http://dash.papyros.io/repos/$repo/$arch 
    2. perform:

       $ sudo pacman -Syu $ sudo pacman -S papyros-shell 

    after which you can run:

     $ papyros-session 

    the directory http://dash.papyros.io/repos/papyros/ contains a sub-directory for only one architecture: x86_64.

    if you have a different architecture, then you will not be able to put the already assembled package from this repository: it is simply not there.

    but, as written at the very beginning of the above link, you can build a package from source with aur .

    here, for example, a shorter instruction on how to use aur th: https://raspberrypi.stackexchange.com/a/511/31480

    • [papyros] SigLevel = Never Server = dash.papyros.io/repos/$repo/$arch They haven’t inserted it either above or below. Not coming out - sholkingx
    • in the dash.papyros.io/repos/papyros directory there is a directory for only one architecture: x86_64. maybe you have some other, not intel? or the system costs 32-bit. You can check the bit by getconf LONG_BIT . - aleksandr barakin
    • Yes, thank you, the 32-bit cue ball is worth - sholkingx
    • then you have to use aur th. I added the answer by giving the necessary links. - aleksandr barakin
    • @sholkingx, like mine - handicraftsman