gpt4 book ai didi

python - 如何在python 3.7中生成条形码

转载 作者:行者123 更新时间:2023-12-01 00:39:59 25 4
gpt4 key购买 nike

我正在使用 python 3.7,为了生成条形码,我尝试使用 pip install pyBarcode' 安装 pyBarcode 库。但它显示以下错误:

找不到满足 pyBarcode 要求的版本(来自版本:)找不到 pyBarcode 的匹配分布

现在,如何为我的 Python 版本安装 pyBarcode

最佳答案

第一次安装正确的库:

pip install python-barcode

然后代码:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import barcode
from barcode.writer import ImageWriter

def testEan():
EAN = barcode.get_barcode_class('ean13')
ean = EAN(u'123456789011', writer=ImageWriter())
fullname = ean.save('my_ean13_barcode')

if __name__ == '__main__':
testEan()

这段代码产生

enter image description here

关于python - 如何在python 3.7中生成条形码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57427243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com