错误提示:
faker模块生成xml文件时提示: `xml`
requires the `xmltodict`
Python library
Traceback (most recent call last):
File "D:\Python\Python310\lib\site-packages\faker\providers\misc\__init__.py", line 634, in xml
import xmltodict
ModuleNotFoundError: No module named 'xmltodict'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "E:\juzicode\faker生成表格\faker-xml-file.py", line 16, in <module>
x = fake.xml()
File "D:\Python\Python310\lib\site-packages\faker\providers\misc\__init__.py", line 636, in xml
raise UnsupportedFeature("`xml` requires the `xmltodict` Python library.", "xml")
faker.exceptions.UnsupportedFeature: `xml` requires the `xmltodict` Python library.
错误原因:
1、faker模块需要用到xmltodict模块,该模块 xmltodict 并不会作为faker的依赖主动安装。
解决方法:
1、手动安装xmltodict模块
pip install xmltodict
Collecting xmltodict
Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB)
Installing collected packages: xmltodict
Successfully installed xmltodict-0.13.0
扩展内容:
如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。