CentOS7.2 安装 Automatic_Speech_Recognition 遇到的问题总结

  • github 地址 /zzw922cn/Automatic_Speech_Recognition
  • numpy.distutils.system_info.NotFoundError: sndfile (http://www.mega-nerd.com/libsndfile/) library not found.
    安装
    yum install libsndfile
    依然遇到报错,网上查了下资料,需要运行
    yum install libsndfile-devel

  • /bin/bash: gcc: 未找到命令
    yum install gcc

  • gcc: error trying to exec ‘cc1plus’: execvp:
    yum install gcc-c++

  • ModuleNotFoundError: No module named ‘tkinter’
    yum search tkinter
    yum install rh-python36-python-tkinter.x86_64

你可能感兴趣的:(Linux)