from barcode.writer import ImageWriter ModuleNotFoundError: No module named 'barcode.writer'
时间: 2023-07-09 13:31:09 浏览: 230
import requests ModuleNotFoundError No module named ‘requests’
这错误提示是因为 Python 找不到 barcode.writer 模块,可能是该模块没有安装或者安装不正确。你可以尝试通过以下命令在命令行中安装该模块:
```
pip install python-barcode
```
如果已经安装过该模块,可以尝试重新安装或者升级该模块:
```
pip install --upgrade python-barcode
```
如果还是出现同样的错误提示,可以检查一下 Python 的环境变量是否配置正确,或者重新安装 Python。
阅读全文