2

我正在尝试在 Ubuntu 12.04 机器上的 virtualenv 中安装 psycopg2。已安装所有相关软件包(python-dev、libpq-dev 等...)

当我在激活 virtualenv 的情况下运行 pip install psycopg2 时,我得到以下输出。这似乎是一个路径遍历问题。setup.cfg 显然在最顶部有一个 [build_ext] 部分,所以我认为 setup.py 没有找到正确的文件。有什么帮助吗?

Downloading/unpacking psycopg2
  Running setup.py egg_info for package psycopg2
    Traceback (most recent call last):
      File "<string>", line 16, in <module>
      File "/home/vagrant/outland_env/build/psycopg2/setup.py", line 459, in <module>
        use_pydatetime  = int(parser.get('build_ext', 'use_pydatetime'))
      File "/home/vagrant/outland_env/local/lib/python2.7/site-packages/configparser.py", line 798, in get
        d = self._unify_values(section, vars)
      File "/home/vagrant/outland_env/local/lib/python2.7/site-packages/configparser.py", line 1154, in _unify_values
        raise NoSectionError(section)
    configparser.NoSectionError: No section: 'build_ext'
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 16, in <module>

  File "/home/vagrant/outland_env/build/psycopg2/setup.py", line 459, in <module>

    use_pydatetime  = int(parser.get('build_ext', 'use_pydatetime'))

  File "/home/vagrant/outland_env/local/lib/python2.7/site-packages/configparser.py", line 798, in get

    d = self._unify_values(section, vars)

  File "/home/vagrant/outland_env/local/lib/python2.7/site-packages/configparser.py", line 1154, in _unify_values

    raise NoSectionError(section)

configparser.NoSectionError: No section: 'build_ext'

----------------------------------------
Command python setup.py egg_info failed with error code 1 in /home/vagrant/outland_env/build/psycopg2
Storing complete log in /tmp/tmpoeLbaP
4

3 回答 3

4

不确定这是否有帮助,但我只需要 cd 进入 setup.py 所在的下载安装目录。

于 2013-06-25T14:29:54.510 回答
2

我有同样的问题,但我尝试了一个旧版本psycopg2==2.3.3,没有问题。

我注意到我还必须删除build/psycopg2目录才能 pip 安装新版本。

这是我在 virtualenv 中所做的:

rm -rf build/psycopg2
bin/pip install psycopg2==2.3.3
于 2013-01-29T17:10:33.053 回答
1

我有同样的问题,至少在我的情况下,原因似乎是我们的服务器上安装了一个奇怪的 configparser 版本,即 configparser Python 3 backport 的错误版本。(我确实更喜欢这个大大改进的 Python 3 版本;我只是惊讶地发现它安装在我们的系统上。)

此处解释了(已解决的)错误。

简而言之,setup.py当前 psycopg2 的 加载文件setup.cfg如下:

parser = configparser.ConfigParser()
parser.read('setup.cfg')

read方法可以采用文件名列表中的单个文件名。在这种情况下,如果文件在 Python 2 下运行,则将文件名指定为字节串(在 Python 2 中也称为字符串)。但是,后向端口用于测试 to 的第一个参数是否是而不是read的实例,因此它将每个字母作为单独的文件处理。由于预期的覆盖机制,如果找不到文件,它会静默失败,我们最终得到一个空配置。unicodebasestring

解决方案当然是升级到当前版本的 Python 3 backport 或使用 Python 2.7 版本(但 Python 3 版本要酷得多)。

于 2013-05-27T14:34:59.993 回答