50

how I can fix it? I've tried to create "soft link" like sudo ln /snap /var/lib/snapd/snap and also sudo ln /var/lib/snapd/snap /snap --> but it doesn't work. I just want to install VSCode in Manjaro

0xActor
  • 614
  • 1
  • 5
  • 7

3 Answers3

174

You must make a symbolic link to get it to work:

sudo ln -s /var/lib/snapd/snap /snap

That way worked for me.

mike65535
  • 483
  • 2
  • 10
  • 21
Zidan
  • 1,741
  • 2
  • 4
  • 3
17

use sudo ln -s /var/lib/snapd/snap /snap it worked for me I am using manjaro

pratyay360
  • 193
  • 1
  • 5
5

I use Manjaro too and have the same problem today, it happens after update some pkgs. And snapd can't install vscode for now.

A good alternative to "snapd" is "yay", for Manjaro. Simple install.

pamac install yay
yay package-name

If nothing works, you should uninstall the vscode first and delete the .desktop file located on /home/your_username/.local/share/applications, and use .deb front vscode website.

To install I downloaded the .deb version on Visual Studio Code website, and converted it to something pacman could install.

Now a little tutorial on how to do that

How to install .deb on manjaro (arch linux)

The package that convert .deb is debtap, but it is only available on AUR. So first u'll need to install pacaur

sudo pacman -S pacaur

After installed pacaur, now u can install debtap

pacaur -S debtap

With debtap installed execute the command below to init debtap

sudo debtap -u

Now is possible to convert .deb

debtap your_package.deb

And finally use pacman to install the converted pkg

sudo pacman -U your-converted-pakage.pkg.tar.zst

Or u can try out this another tutorial