You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing dependencies from requirements.txt in a virtual environment with Python 3.13, the installation fails with a subprocess error during the wheel building process for psycopg2-binary version 2.9.9.
The error message indicates that pg_config is missing, which is required to build psycopg2 from source. It suggests adding the directory containing pg_config to the $PATH or specifying the full path.
Steps to Reproduce:
Install Python 3.13.
Set up a virtual environment and activate it.
Run pip install -r requirements.txt with psycopg2-binary==2.9.9 listed as a dependency.
Expected Behavior:
The dependencies, including psycopg2-binary, should install without any issues.
Actual Behavior:
The installation process fails with an error indicating that pg_config is missing, and the wheel for psycopg2-binary cannot be built.
Environment:
Python version: 3.13
psycopg2-binary version: 2.9.9
Operating System: windows 11
Additional Information:
CPython versions tested on:
3.13
Operating systems tested on:
Windows
The text was updated successfully, but these errors were encountered:
Bug report
Bug description:
Description:
When installing dependencies from requirements.txt in a virtual environment with Python 3.13, the installation fails with a subprocess error during the wheel building process for psycopg2-binary version 2.9.9.
The error message indicates that pg_config is missing, which is required to build psycopg2 from source. It suggests adding the directory containing pg_config to the $PATH or specifying the full path.
Steps to Reproduce:
Install Python 3.13.
Set up a virtual environment and activate it.
Run pip install -r requirements.txt with psycopg2-binary==2.9.9 listed as a dependency.
Expected Behavior:
The dependencies, including psycopg2-binary, should install without any issues.
Actual Behavior:
The installation process fails with an error indicating that pg_config is missing, and the wheel for psycopg2-binary cannot be built.
Environment:
Python version: 3.13
psycopg2-binary version: 2.9.9
Operating System: windows 11
Additional Information:
CPython versions tested on:
3.13
Operating systems tested on:
Windows
The text was updated successfully, but these errors were encountered: