Mountain Lion update and mercurial libraries python

丶灬走出姿态 提交于 2019-12-03 09:21:29
rajasoun

On OS X - 10.8.2 Installing mercurial through Python easy_install tool solved the problem

easy_install -U mercurial
tilo

I just ran into the same problem, picked a new version (mercurial-2.2.3+20120707-py2.7-macosx10.7) from the Mercurial website and now it works again.

Gareth Jones

I had a similar problem to this last night after upgrading to OX 10.9 Mavericks. I had tried brew install hg and brew update but they didn't work, as everyone's systems are different if you're running homebrew I would recommend running brew doctor to see what your particular issue is, in my case I had the following;

Warning: You have unlinked kegs in your Cellar

Leaving kegs unlinked can lead to build-trouble and cause brews that depend on those kegs to fail to run properly once built. Run brew link on these: mercurial

So to fix my mercurial issue I ran;

brew link --overwrite mercurial

I had this same issue.

Reinstalling Mercurial fixed it. Get it from here: http://mercurial.berkwood.com/

Another easy option is to use Homebrew (http://mxcl.github.io/homebrew/):

brew install hg

...worked for me.

As a macports user I "solved" this by running

sudo port install mercurial
mousebacon

FYI for others - I was seeing similar errors and had to reinstall setuptools. (http://pypi.python.org/pypi/setuptools/0.6c11 if you're not already familiar with it.)

Things seem to work now.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!