0

I have tried to install gnucap (I downloaded it from the website http://ftp.gnu.org/gnu/gnucap/ with the extension .tar.gz) in the Ubuntu live-usb. I have tried to do it in the terminal with:

sudo apt-get install gnucap

But the problem is that it always tell me :

E:Unable to Locate Package

Could someone tell me what should I do to install the software?

Charo
  • 3,681

2 Answers2

1

The way to install a file *.tar.gz is first decompress it with tar -zxvf file.tar.gz and then running the binary file or installing with, ./configure; make install.

Octave is in the Ubuntu universe and can be installed with synaptic or apt-get. The package name is "octave".

jokerdino
  • 41,732
LnxSlck
  • 12,456
0

If you're on a LiveCD you need to sudo apt-get update first, then try your install command.

Try that and then please update your question with the results.

Jorge Castro
  • 73,717