pyinstaller提示 The 'pathlib' package is an obsolete backport
今天使用pyinstaller打包程序,提示
The 'pathlib' package is an obsolete backport of a standard library package and is incompatible with PyInstaller. Please remove this package (located in D:\Programs\Python\Python311\Lib\site-packages) using
"D:\Programs\Python\Python311\python.exe" -m pip uninstall pathlib
then try again.
本来以为是conda影响了,但是卸载掉之后还是这样,然后又重新安装pyinstaller,依然出错,最后解决方法如下:
运行 python -m pip install pathlib即可。
再次运行pyinstall命令,一切正常。
下一篇: 矩阵乘法
上一篇:PHP unset() 函数如何使用?unset()作用详解
评论