Probably my question is repeated
I am using Postgres with Docker on MacOs
I am not doing it with Dockerfile
docker pull postgres:10
docker run -p 5432:5432 --name postgres10 -v /Users/myuser/Volumes/postgres10:/var/lib/postgresql/data -e POSTGRES_PASSWORD=123 -d postgres:10
I am trying to install psycopg2
in a flask application withPython 3.7
But it doesn't find pg_config
I know that in a traditional installation it is located in PATH="/Applications/Postgres.app/Contents/Versions/latest/bin:$PATH"
Any idea how to fix?