im search on many website to install it.but they sad if there is a INSTALL file,but in my file there no such of that named file.so,is there a way to install it from terminal?
Asked
Active
Viewed 4,455 times
0
1 Answers
0
First, you must extract the tar file, you can use something like this,
tar -xvzf filename
go into the extracted directory using cd
.
There is several ways to install the program, depends on the program files. But the most common one is using these commands below,
./configure
make
sudo make install
Or using the easy_install
from python.

sin
- 101
.tar
file content ? Each program should have unique ways to install it, the answer is depend to the content of it. – Liso Oct 22 '17 at 07:25