'módulo' o objeto não tem atributo 'PY2'

1

Estou usando o ubuntu 14.04, estava tentando instalar o python-memcache. Eu tenho um erro como

Downloading/unpacking python-memcached
  Downloading python-memcached-1.53.tar.gz
Cleaning up...
Exception:
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main
    status = self.run(options, args)
  File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 278, in run
    requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
  File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1229, in prepare_files
    req_to_install.run_egg_info()
  File "/usr/lib/python2.7/dist-packages/pip/req.py", line 292, in run_egg_info
    logger.notify('Running setup.py (path:%s) egg_info for package %s' % (self.setup_py, self.name))
  File "/usr/lib/python2.7/dist-packages/pip/req.py", line 284, in setup_py
    if six.PY2 and isinstance(setup_py, six.text_type):
AttributeError: 'module' object has no attribute 'PY2'

Storing debug log for failure in /home/mani/.pip/pip.log

Estou recebendo o mesmo erro ao instalar o Django-aipo, o pymongo etc.

    
por V Manikandan 06.06.2014 / 10:53

1 resposta

1

O módulo Python seis instalado é muito antigo. Dentro do seu interpretador python

import six
six.__version__

A versão atual é 1.7.3, no meu sistema Ubuntu 12.10 o padrão era 1.1.0. Atualize este módulo e você estará pronto e funcionando novamente.

    
por sholmes 06.08.2014 / 04:26

Tags