当前位置: 首页 > 工具软件 > python-magic > 使用案例 >

python-magic has no attribute ‘from_file‘

能烨华
2023-12-01

python-magic has no attribute ‘from_file’

原因是版本不一样的问题,

在网上搜到可能有人是这样安装的magic:

pip install python-libmagic

pip install filemagic

要想使用含有from_file的版本的magic,可以首先卸载已经安装的magic

pip uninstall python-libmagic
pip uninstall filemagic

之后使用如下这种方法安装magic(python2 、python3均适用)

pip install python-magic
 类似资料: