Librosa是一个用于音频、音乐分析、处理的python工具包,一些常见的时频处理、特征提取、绘制声音图形等功能应有尽有,功能十分强大

anaconda prompt下输入pip install librosa报错。
报错内容:
ERROR: 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.
WARNING: You are using pip version 19.3.1; however, version 20.0.2 is available.
You should consider upgrading via the ‘python -m pip install --upgrade pip’ command.
安装librosa以及pip install librosa时报错ERROR: Cannot uninstall 'llvmlite'.

按照报错内容的提示 输入python -m pip install --upgrade pip,再输入pip install librosa。还是报错
ERROR: 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.

查了一些教程,解决办法:先输入pip install --ignore-installed llvmlite,再输入pip install librosa即可解决。
安装librosa以及pip install librosa时报错ERROR: Cannot uninstall 'llvmlite'.

相关文章:

  • 2021-09-29
  • 2021-08-02
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2022-01-10
猜你喜欢
  • 2021-08-24
  • 2021-04-20
  • 2021-12-30
  • 2021-06-08
  • 2021-12-01
  • 2021-09-24
  • 2021-08-06
相关资源
相似解决方案