2016-04-23 21 views
1

Als ich „hg -version“ in meinem Mac Terminal setzen, zeigt es unten Fehler ...kann nicht gestartet werden Mercurial

Traceback (most recent call last): 
    File "/usr/local/bin/hg", line 41, in <module> 
    mercurial.util.setbinary(fp) 
    File "/Library/Python/2.7/site-packages/mercurial/demandimport.py", line 106, in __getattribute__ 
    self._load() 
    File "/Library/Python/2.7/site-packages/mercurial/demandimport.py", line 78, in _load 
    mod = _hgextimport(_import, head, globals, locals, None, level) 
    File "/Library/Python/2.7/site-packages/mercurial/demandimport.py", line 47, in _hgextimport 
    return importfunc(name, globals, *args) 
    File "/Library/Python/2.7/site-packages/mercurial/util.py", line 70, in <module> 
    statfiles = getattr(osutil, 'statfiles', platform.statfiles) 
    File "/Library/Python/2.7/site-packages/mercurial/demandimport.py", line 106, in __getattribute__ 
    self._load() 
    File "/Library/Python/2.7/site-packages/mercurial/demandimport.py", line 78, in _load 
    mod = _hgextimport(_import, head, globals, locals, None, level) 
    File "/Library/Python/2.7/site-packages/mercurial/demandimport.py", line 47, in _hgextimport 
    return importfunc(name, globals, *args) 
ImportError: dlopen(/Library/Python/2.7/site-packages/mercurial/osutil.so, 2): Symbol not found: _fdopendir$INODE64 
    Referenced from: /Library/Python/2.7/site-packages/mercurial/osutil.so 
    Expected in: /usr/lib/libSystem.B.dylib 
in /Library/Python/2.7/site-packages/mercurial/osutil.so 

Wie ich dieses Problem beheben?

Vielen Dank im Voraus für jede Hilfe, die Sie zur Verfügung stellen können.

PS: Sorry für mein schlechtes Englisch.

Antwort

0

Endlich habe ich Antwort ...!

Schritt 1: Gehen Sie zu „/Library/Python/2.7/site-packages“ -Ordner.

>$ cd /Library/Python/2.7/site-packages 

Schritt 2: unter Dateien entfernen in "site-packages" -Ordner.

>$ rm -rf hgext       
>$ rm -rf mercurial    
>$ rm -rf mercurial-3.7.3-py2.7.egg-info 

Schritt 3: Jetzt installieren Mercurial

Verwandte Themen