Problems using psycopg2 on Mac OS (Yosemite)

前端 未结 8 1393
盖世英雄少女心
盖世英雄少女心 2020-12-23 13:49

Currently I am installing psycopg2 for work within eclipse with python.

I am finding a lot of problems:

  1. The first problem sudo pip3.4 install ps
8条回答
  •  梦毁少年i
    2020-12-23 14:11

    Here's a fix that worked for me on El Capitan that doesn't require restarting to work around the OS X El Capitan System Integrity Protection (SIP):

    brew unlink postgresql && brew link postgresql
    brew link --overwrite postgresql
    

    H/T Farhan Ahmad

提交回复
热议问题