我在 ~/Python2.7/ 本地安装了 python 2.7,我需要 psycopg2 模块。但是当我尝试使用 easy_install 安装它或手动编译它时,我得到
error: invalid Python installation: unable to open /usr/local/lib/python2.7/config/Makefile (No such file or directory)
我试图从 ~/Python2.7/Lib/sysconfig.py 中更改一行
return os.path.join(get_path('stdlib'), "config", "Makefile")
到
return '/home/foo/Python2.7/Makefile'
没有效果。我该怎么做才能绕过这个?