I am installing AGE by following this link: https://theundersurfers.netlify.app/age-installation/
All the rest steps are done successfully but I a facing an error while installing AGE from the repo; git clone https://github.com/apache/age.git..
Till clone it is working fine but as i am giving the path to get "pg_config" it is giving error..
What to do????
I am looking for answer..
2
Answers
You should provide the PG_CONFIG argument while installation of Apache AGE which is supposed to be the path of the installed PostgreSQL’s pg_config binary file. It is like the following:
In case of having the binary directory of postgresql added to the PATH environment variable you can use it directly and you can watch where it is located using
You might have forgotten to set the paths to the installed postgres directory. This can be done using the following:
An example might look like
export PATH=/usr/local/pgsql/bin/:$PATH
. This should make you able to make the files using:If the problem still persists, check manually in the
bin
directory if thepg_config
file exists. If it is missing you might need to reinstall postgres.