ValueError: 'format' in __slots__ conflicts with class variable

Posted Zzzzh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ValueError: 'format' in __slots__ conflicts with class variable相关的知识,希望对你有一定的参考价值。

Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-build-qe3ebgj7/progressbar/setup.py", line 5, in <module>
        import progressbar
      File "/tmp/pip-build-qe3ebgj7/progressbar/progressbar/__init__.py", line 59, in <module>
        from progressbar.widgets import *
      File "/tmp/pip-build-qe3ebgj7/progressbar/progressbar/widgets.py", line 121, in <module>
        class FileTransferSpeed(Widget):
      File "/public/home/zzh/.pyenv/versions/anaconda3-4.3.1/lib/python3.6/abc.py", line 133, in __new__
        cls = super().__new__(mcls, name, bases, namespace)
    ValueError: format in __slots__ conflicts with class variable
    
    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-qe3ebgj7/progressbar/

今天在安装ATCG的GDC Data Transfer Tool 软件过程中,安装几个依赖的python包时出现以上错误。大致估计可能是python版本的问题。我pip安装的是3.x的版本,这个包可能用的是2.x的版本。

用2.x的版本安装后报错问题解决

安装完成后运行./gdc-client命令时,再次报错

ImportError: /public/home/zzh/.pyenv/versions/2.7.13/lib/python2.7/site-packages/lxml-3.5.0b1-py2.7-linux-x86_64.egg/lxml/etree.so: undefined symbol: xmtent

谷歌了一下,可能是lxml依赖的一些 libraries 未安装。

以上是关于ValueError: 'format' in __slots__ conflicts with class variable的主要内容,如果未能解决你的问题,请参考以下文章

raise ValueError(“{0} format is not supported“.format(y_type))ValueError: continuous format

.format() 在使用 0:g 删除尾随零时返回 ValueError

学习字符串format()函数时,报错:ValueError: cannot switch from manual field specification to automatic field num

format函数报错:ValueError: dictionary update sequence element #0 has length 1; 2 is required,str转dict(代码

Python2.6与Python2.7的format用法区别

使用Flask创建注册表单 - AttributeError:'ValueError'对象没有属性'name'