0

我在 Windows XP(所有 x86)上使用 Active Python 2.5.1、Mercurial 1.8.1 和 TortoiseHg 1.1.0 我正在尝试在评论板中配置一个 mercurial 存储库。为此,它需要 mercurial python 模块所以当我尝试通过 easy_install 安装 mercurial 时,出现以下错误

C:\>easy_install mercurial==1.8.1
Searching for mercurial==1.8.1
Reading http://pypi.python.org/simple/mercurial/
Reading http://mercurial.selenic.com/
Reading http://www.selenic.com/mercurial
Reading http://mercurial.selenic.com/release/
Best match: mercurial 1.8.1
Downloading http://mercurial.selenic.com/release/mercurial-1.8.1.tar.gz
Processing mercurial-1.8.1.tar.gz
Running mercurial-1.8.1\setup.py -q bdist_egg --dist-dir c:
\docume~1\username\locals~1\temp\easy_install-7l0ykf
\mercurial-1.8.1\egg-dist-tmp-egcnt6

cc1.exe: error: unrecognized command line option '-mno-cygwin'
error: Setup script exited with error: command 'gcc' failed with exit
status 1

我已经通过 MinGW 安装了 gcc


谢谢 shu zOMG chen,1.8.1 是一个要求,所以不能真正改变它。第二个链接确实有帮助,但现在还有另一个问题。从 distutils\cygwinccompiler.py 中删除 -mno-cygwin 出现后,我运行了 easy_install mercurial==1.8.1。跟踪如下:

C:\>easy_install mercurial==1.8.1
Searching for mercurial==1.8.1
Reading http://pypi.python.org/simple/mercurial/
Reading http://mercurial.selenic.com/
Reading http://www.selenic.com/mercurial
Reading http://mercurial.selenic.com/release/
Best match: mercurial 1.8.1
Downloading http://mercurial.selenic.com/release/mercurial-1.8.1.tar.gz
Processing mercurial-1.8.1.tar.gz
Running mercurial-1.8.1\setup.py -q bdist_egg --dist-dir c:\docume~1\username\locals~1\temp\easy_install-05el_6\mercurial-1.8.1\egg-dist-tmp-zsfye0

gcc: error: CreateProcess: No such file or directory
error: Setup script exited with error: command 'gcc' failed with exit status 1

C:\>

请帮助问候

4

2 回答 2

0

https://www.mercurial-scm.org/downloads也有适用于 Windows 的 exe 和 msi 安装程序。

在我看来,TortoiseXXX 改变了包装器背后的心理图景。当使用 TortoiseCVS 时,我很难向我的同事解释如何正确使用 CVS。

题外话:为了您自己的其他目的,也可以尝试使用 Git ( http://git-scm.com/ ) 这个想法非常相似。我猜 Git 会在统计上获胜。

msysgit (Windows) 不错,功能与原始 Linux 相当,包含的 Git Gui 和 gitk 可能看起来很奇怪(Tcl/Tk),但它们非常适合基本的 Git 操作。

于 2012-04-25T11:29:20.617 回答
0

从您的输出看来,easy_install 正在尝试使用需要一些 cygwin 部件的选项来构建 mercurial。如果您使用的是 mingw gcc,您可能需要查看https://www.mercurial-scm.org/wiki/BuildingOnWindows以获取有关如何在 Windows 中构建的说明。

您使用 1.8.1 有什么原因吗?最新版本是 2.1.2。

谷歌搜索,用 cython 和 mingw 编译会产生 gcc: error: unrecognized command line option '-mno-cygwin'也可以帮助你。

于 2012-04-25T10:18:26.917 回答