Problem mit easy_install unter OSX 10.6


1

Ich habe einige Google-Suchanfragen durchgeführt und bin zu kurz gekommen.

Ausgabe ist die folgende

$ easy_install yolk
'import site' failed; use -v for traceback
Traceback (most recent call last):
File "/usr/bin/easy_install-2.6", line 10, in <module>
  load_entry_point('setuptools==0.6c9', 'console_scripts', 'easy_install')()
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.py", line 271, in load_entry_point
  return get_distribution(dist).load_entry_point(group, name)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.py", line 2174, in load_entry_point
  return ep.load()
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.py", line 1907, in load
  entry = __import__(self.module_name, globals(),globals(), ['__name__'])
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools/__init__.py", line 2, in <module>
  from setuptools.extension import Extension, Library
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools/extension.py", line 2, in <module>
  from dist import _get_unpatched
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools/dist.py", line 5, in <module>
  from setuptools.command.install import install
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools/command/install.py", line 2, in <module>
  from distutils.command.install import install as _install
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/distutils/command/install.py", line 21, in <module>
  from site import USER_BASE
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site.py", line 516, in <module>
    main()
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site.py", line 499, in main
known_paths = addsitepackages(known_paths)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site.py", line 291, in addsitepackages
  addsitedir(sitedir, known_paths)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site.py", line 185, in addsitedir
  addpackage(sitedir, name, known_paths)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site.py", line 155, in addpackage
  exec line
File "<string>", line 1, in <module>
AttributeError: 'module' object has no attribute '__plen'

Irgendwelche Ideen?

Antworten:


1

Es scheint, Sie haben eine Pleite easy-install.pth. Die einfachste Lösung wäre, es aus dem Dasein zu verbannen. In einem Terminal führen Sie Folgendes aus:

sudo rm /Library/Python/2.6/site-packages/easy-install.pth

Dies hat jedoch den Nebeneffekt, dass Sie die Pakete, mit denen Sie installiert haben, neu installieren müssen easy_install.

Übrigens, probieren Sie es mit pip - es saugt nicht so viel.

pip ist ein Tool zum Installieren und Verwalten von Python-Paketen, wie sie im Python-Paketindex enthalten sind.

pip ist ein Ersatz für easy_install. Es werden meistens die gleichen Techniken zum Auffinden von Paketen verwendet, daher sollten Pakete, die easy_installable sind, auch pip-installierbar sein. Dies bedeutet, dass Sie anstelle von easy_install SomePackage die Pip-Installation SomePackage verwenden können.

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.