mescano
mescano

Reputation: 3

Error installing pgspecial, it keeps trying to call/use psycopg2, instead of the psycopg2-binary already installed

I'm running Jupyter Notebook with Docker on Windows 10. I already installed psycopg2-binary. I used the command "pip install pgspecial" but got the error "Collecting psycopg2>=2.7.4 (from pgspecial)". It looks like it keeps trying to install psycopg2 (which doesn't work on my pc), ignoring the psycopg2-binary already installed.

jupyter terminal screen

Upvotes: 0

Views: 210

Answers (1)

Adrian Klaver
Adrian Klaver

Reputation: 19655

That is something you will need to take up with the pgspecial maintainers. Their setup.py has:

 install_requires=[
        'click >= 4.1',
        'sqlparse >= 0.1.19',
        'psycopg2 >= 2.7.4',
    ],

psycopg2 is different from psycopg2-binary.

Upvotes: 1

Related Questions