I know there's a lot of questions about downloading .tar.gz files, but I haven't found any that explain my problem. When I'm trying to install these files, using the
./configure
make
sudo make install.
But when I use ./config
, it returns bash: ./config: No such file or directory
. Same with make
and sudo make install
. Am I doing wrong, or is there just an error with my computer?
As I said, this is not the same question as "how to download .tar.gz files" because I tried their solution and it didn't work. There is no ./configure file to cd into.
ls
, do you see a file calledconfig
? – anonymous2 May 18 '16 at 15:42cd
to the directory? – David May 18 '16 at 15:43./configure - make - make install
paradigm: they may contain code for other build systems such ascmake
orscons
, or may not even contain source code at all. The second error is using./config
- the script (if it exists) will almost certainly be called./configure
– steeldriver May 18 '16 at 15:43