Warum kann `virtualenv`` pkg_resources` nicht finden?

Ich versuche, virtualenv in Ubuntu zu verwenden, um eine lokale virtuelle Python-Umgebung zu installieren. Wenn ich den Shell-Befehl ausführe:

<code>$ virtualenv ./virt_python
</code>

Es wird eine Ausnahme ausgelöst, die nicht importiert werden kannpkg_resources. Aber wenn ich eine Python-Shell öffne undfrom pkg_resources import load_entry_point es läuft gut. Als Referenz finden Sie unten die vollständige Stapelverfolgung.

<code>$ virtualenv ./virt_python
New python executable in ./virt_python/bin/python
Installing setuptools............done.
Installing pip.......
  Complete output from command /home/rpsharp/local/...hon/bin/easy_install /usr/local/lib/pytho...pport/pip-1.1.tar.gz:
  Traceback (most recent call last):
  File "/home/rpsharp/local/workspace/invest-natcap.invest-3/virt_python/bin/easy_install", line 5, in <module>
    from pkg_resources import load_entry_point
ImportError: No module named pkg_resources
----------------------------------------
...Installing pip...done.
Traceback (most recent call last):
  File "/usr/local/bin/virtualenv", line 9, in <module>
    load_entry_point('virtualenv==1.7.1.2', 'console_scripts', 'virtualenv')()
  File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 928, in main
    never_download=options.never_download)
  File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 1042, in create_environment
    install_pip(py_executable, search_dirs=search_dirs, never_download=never_download)
  File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 640, in install_pip
    filter_stdout=_filter_setup)
  File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 1006, in call_subprocess
    % (cmd_desc, proc.returncode))
OSError: Command /home/rpsharp/local/...hon/bin/easy_install /usr/local/lib/pytho...pport/pip-1.1.tar.gz failed with error code 1
</code>

Ich habe die hier vorgeschlagene Lösung ausprobierthttps://stackoverflow.com/a/10538412/42897 aber es hatte keine Wirkung.

Antworten auf die Frage(3)

Ihre Antwort auf die Frage