Home > Software engineering >  How to install Snap on ubuntu
How to install Snap on ubuntu

Time:10-19

I mistakenly uninstalled the inbuilt snap from my Ubuntu, i want to reinstall it, can anybody help me in it. i tried researching several websites, but didn't found any way to install snap again.

CodePudding user response:

Install Snap by "apt install snapd"...

For Reference : https://ubuntu.com/tutorials/create-your-first-snap#1-overview

Hope it would be useful for you :)

CodePudding user response:

Make sure you have updated the local repositories

  • sudo apt update && sudo apt upgrade

If you still get into errors like you mentioned above try to run this

  • apt --fix-broken install
  • Related