Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to locate package monodevelop

i am unable to install monodevelop i am running it from terminal -- sudo apt-get install monodevelop but it comes out with error unable to locate package monodevelop how to install monodevelop on linux

Is there any method to install it from ubuntu software center

like image 588
user3766383 Avatar asked Jul 19 '14 07:07

user3766383


2 Answers

  1. sudo apt install apt-transport-https dirmngr

  2. sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF

  3. echo "deb https://download.mono-project.com/repo/ubuntu vs-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-vs.list

  4. sudo apt update

make sure you copy this command perfectly, in step 3 make sure you copy all command

like image 195
ferdiansahgg Avatar answered Oct 08 '22 05:10

ferdiansahgg


You should definitely install Monodevelop using Git repo. There are instructions right here

like image 22
SchmidtJ Avatar answered Oct 08 '22 05:10

SchmidtJ