无法安装 librosa python,如何卸载 llvmlite?
Cannot install librosa python, how can I uninstall llvmlite?
我最近尝试使用 pip install librosa
在 Windows 上安装 librosa
。尽管如此,还是出现了这个错误:
Cannot uninstall 'llvmlite'. It is a distutils installed project and
thus we cannot accurately determine which files belong to it which
would lead to only a partial uninstall.
作为解决方案,我已经执行了conda update --all
和conda install numba=0.39.0
,但没有任何改善。
先谢谢你。
让我试着帮忙。
我最近遇到了这个问题,并通过使用以下命令摆脱了它。
--ignore-installed
您只需使用 --user
标签键入您想要执行的命令。
在您的情况下,它将是:
pip install librosa --user
您可以使用:
pip install librosa --ignore-installed llvmlite
我最近尝试使用 pip install librosa
在 Windows 上安装 librosa
。尽管如此,还是出现了这个错误:
Cannot uninstall 'llvmlite'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
作为解决方案,我已经执行了conda update --all
和conda install numba=0.39.0
,但没有任何改善。
先谢谢你。
让我试着帮忙。
我最近遇到了这个问题,并通过使用以下命令摆脱了它。
--ignore-installed
您只需使用 --user
标签键入您想要执行的命令。
在您的情况下,它将是:
pip install librosa --user
您可以使用:
pip install librosa --ignore-installed llvmlite