1

I downloaded text editors (komodo, eclipse, sublime text, and medit). I opened the dash home but, they are in tar.gz format and are opening in archive managers as folders. How do I open them?

Thank you.

Sam
  • 66
  • 1
  • 6
  • You need to install them. In this post you will find a great post with plenty documentation: http://askubuntu.com/q/25961/62483 – Lucio Dec 22 '13 at 03:44
  • Medit is available from the Software Center. No need to download a tar.gz for medit. –  Dec 22 '13 at 04:13
  • Priority for installing software: distribution packages -> package repositories maintained by original application developers -> compiling from source – LiveWireBT Dec 23 '13 at 08:29

2 Answers2

1

Can you use aptitude? Open up a terminal and type:

 sudo apt-get install eclipse

The .tar.gz files are source code. If you extract them, they will contain installation instructions.

dejay
  • 195
1

You will find a README or a INSTALL file in these folders with instructions on how to install. Most likely, they are 1. ./configure 2. make 3. make install . The easier option is to execute sudo apt-get install vim in the terminal.

Jay
  • 2,270