1

我尝试使用 pip 包管理器使用命令安装 mercurial:

pip.exe install mercurial -I --install-option="--c2to3"

并得到这样的错误:

Downloading/unpacking mercurial
  Running setup.py egg_info for package mercurial
    setup.py with python3 needs --c2to3 (experimental)
    Complete output from command python setup.py egg_info:
    setup.py with python3 needs --c2to3 (experimental)

----------------------------------------
Command python setup.py egg_info failed with error code 1

如何通过 pip 选项正确地将“--c2to3”选项传递给 setup.py?

系统:Server2008R2 SP1,python-3.2.3(AMD64)

4

1 回答 1

1

Python 3.x 不支持Mercurial 。在 Python 2.7 下安装它(除非你想帮助移植它)

于 2013-06-04T13:59:08.270 回答