美文网首页
AttributeError: module 'clic

AttributeError: module 'clic

作者: 宝宝家的隔壁老王 | 来源:发表于2017-05-21 22:27 被阅读142次

    AttributeError: module 'click' has no attribute 'command'

    最近接触到 python 的命令行模块 click,然而按照官方文档内容

    import click
    
    @click.command()
    @click.option('--count', default=1, help='Number of greetings.')
    @click.option('--name', prompt='Your name', help='The person to greet.')
    def hello(count, name):
        """Simple program that greets NAME for a total of COUNT times."""
        for x in range(count):
            click.echo('Hello %s!' % name)
    
    if __name__ == '__main__':
        hello()
    

    运行的时候一直提示 AttributeError: module 'click' has no attribute 'command'

    百思不得其解啊,后来终于在网上找到了原因,是因为我把上述测试的文件命名为 click.py 了,这种以模块名命名文件在 python 中是一个大忌啊,会使文件在 import click 模块的时候使用我们创建的 click.py 文件。

    解决方法:

    click.py 文件换成其他的名字即可。

    相关文章

      网友评论

          本文标题:AttributeError: module 'clic

          本文链接:https://www.haomeiwen.com/subject/smbvxxtx.html