0

I was trying to instal joe editor on my newly created VM Ubuntu but it fails.

buntu@ubuntu:~/Desktop$ sudo apt-get install -y joe
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package joe
ubuntu@ubuntu:~/Desktop$

1 Answers1

3

Joe is part of the universe repository, so you will need to first enable that via the console:

sudo add-apt-repository universe

Once this is done, update apt:

sudo apt update 

Now you can install Joe:

sudo apt install joe 
matigo
  • 24,752
  • 7
  • 50
  • 79