python pip python-3.5 attributeerror

python - Error de pip3: el objeto ''_NamespacePath'' no tiene atributo ''sort''



python-3.5 attributeerror (6)

Encontré el mismo problema con python 3.5.2 y pip3 (9.0.1). Y lo arreglé siguiendo esta solución: https://github.com/pypa/setuptools/issues/885#issuecomment-307696027

Más específicamente, edité la línea # 2121 ~ 2122 de este archivo: "sudo vim /usr/local/lib/python3.5/dist-packages/pip/_vendor/pkg_resources/__init__.py"

#orig_path.sort(key=position_in_sys_path) #module.__path__[:] = [_normalize_cached(p) for p in orig_path] orig_path_t = list(orig_path) orig_path_t.sort(key=position_in_sys_path) module.__path__[:] = [_normalize_cached(p) for p in orig_path_t]

Intenté instalar un paquete a través de pip3 y obtuve este error. Cada comando pip / pip3 que ejecuto me da este error-

alexg@hitbox:~$ pip3 -V Traceback (most recent call last): File "/usr/local/bin/pip3", line 7, in <module> from pip import main File "/home/alexg/.local/lib/python3.5/site-packages/pip/__init__.py", line 26, in <module> from pip.utils import get_installed_distributions, get_prog File "/home/alexg/.local/lib/python3.5/site-packages/pip/utils/__init__.py", line 27, in <module> from pip._vendor import pkg_resources File "/home/alexg/.local/lib/python3.5/site-packages/pip/_vendor/pkg_resources/__init__.py", line 3018, in <module> @_call_aside File "/home/alexg/.local/lib/python3.5/site-packages/pip/_vendor/pkg_resources/__init__.py", line 3004, in _call_aside f(*args, **kwargs) File "/home/alexg/.local/lib/python3.5/site-packages/pip/_vendor/pkg_resources/__init__.py", line 3046, in _initialize_master_working_set dist.activate(replace=False) File "/home/alexg/.local/lib/python3.5/site-packages/pip/_vendor/pkg_resources/__init__.py", line 2578, in activate declare_namespace(pkg) File "/home/alexg/.local/lib/python3.5/site-packages/pip/_vendor/pkg_resources/__init__.py", line 2152, in declare_namespace _handle_ns(packageName, path_item) File "/home/alexg/.local/lib/python3.5/site-packages/pip/_vendor/pkg_resources/__init__.py", line 2092, in _handle_ns _rebuild_mod_path(path, packageName, module) File "/home/alexg/.local/lib/python3.5/site-packages/pip/_vendor/pkg_resources/__init__.py", line 2121, in _rebuild_mod_path orig_path.sort(key=position_in_sys_path) AttributeError: ''_NamespacePath'' object has no attribute ''sort''

He intentado ejecutar pip3 install --upgrade pip setuptools acuerdo con algunas respuestas, pero cada comando pip me da el error. Estoy atascado y no puedo hacer nada.

¿Qué podría haberlo causado, y cómo puede solucionarse esto?

Estoy en Ubuntu 16.04 con Python 3.5.2


Esto probablemente significa que sus dependencias se desordenaron.

Intenta desinstalar pip3 desde cero y debería funcionar.

En caso de que no funcione, elimine su instalación pip . En tu caso:

rm -r /home/alexg/.local/lib/python3.5/site-packages/pip/

Y para estar seguro la próxima vez, mejor trabajar con entornos virtuales :)


Esto puede sonar extraño, porque tuve este problema y probé todo lo que se menciona en los problemas de SO y GitHub. Pero luego instalé pip con easyinstall y el comando pip funciona. Tal vez ahora hay 2 paquetes de pip ahora. Pero el error se ha ido.

easy_install pip


La actualización de setuptools funcionó para mí:

pip3 install --upgrade setuptools


Prueba: sudo easy_install pip y luego

sudo easy_install setuptools

Probablemente es así debido a las dependencias desordenadas.


tratar -
pip install -U pip
pip install -U setuptools

Si editar __init__.py no ayuda.