Kanwar_Singh
Kanwar_Singh

Reputation: 133

./configure gives error in ubuntu

While installing eclipse.tar.gz and when I used ./configure command,it returned me the following error:

"bash: ./configure: No such file or directory"

How to solve this error, so that I can install eclipse on my system.

Upvotes: 3

Views: 13289

Answers (2)

Fithe_Xanki
Fithe_Xanki

Reputation: 107

I installed 'pmars-0.9.2' (its was unpacked from pmars-0.9.2.tar.gz) on Ubuntu 18.04, but with ./configure i also got a similar bash: ./configure: No such file or directory error. For the correct use of the command autoreconf -i i wrote in sequence:

# automake
# apt install automake
# apt install automake1.11
# autoreconf -i

and for me this already goes into another error:

autoreconf: 'configure.ac' or 'configure.in' is required

Upvotes: 1

Sachith Muhandiram
Sachith Muhandiram

Reputation: 2972

First make sure you are in that directory. Then before you use ./configure command.

$ autoreconf -i

and then ./configure. This worked for me.

Upvotes: 3

Related Questions