Can not run configure command: "No such file or directory"

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
dinxan
Posts: 4
Joined: 2023-12-15 17:12

Can not run configure command: "No such file or directory"

#1 Post by dinxan »

I'm trying to install a glib-2.57.2 tar.gz package from source. I downloaded the package, changed to the package’s directory and ran ./configure command but it returned > bash: ./configure: No such file or directory. What can be the problem? A configure.ac file is located in the program folder.Please Help Me!!!


dinxan
Posts: 4
Joined: 2023-12-15 17:12

Re: Can not run configure command: "No such file or directory"

#3 Post by dinxan »

Yes, of course.

dinxan
Posts: 4
Joined: 2023-12-15 17:12

Re: Can not run configure command: "No such file or directory"

#4 Post by dinxan »

Thank you for getting back to me so fast.The file i try to open is here: https://download.gnome.org/sources/glib/2.57/

lindi
Debian Developer
Debian Developer
Posts: 646
Joined: 2022-07-12 14:10
Has thanked: 2 times
Been thanked: 129 times

Re: Can not run configure command: "No such file or directory"

#5 Post by lindi »

Why are you installing it from source?

dinxan
Posts: 4
Joined: 2023-12-15 17:12

Re: Can not run configure command: "No such file or directory"

#6 Post by dinxan »

I want to compile a code in GTK+3.

User avatar
NorthEast
Posts: 358
Joined: 2018-11-18 04:35
Has thanked: 12 times
Been thanked: 31 times

Re: Can not run configure command: "No such file or directory"

#7 Post by NorthEast »

Presumably the configure script is in the directory where you are trying to run it. Perhaps show bash the command by running:

Code: Select all

bash ./configure

jlarocco
Posts: 3
Joined: 2023-08-21 05:48

Re: Can not run configure command: "No such file or directory"

#8 Post by jlarocco »

Their website says to build with meson.

Code: Select all

meson setup _build
meson compile -C _build
meson install -C _build

Post Reply