pip3 在 mac os 上安装 pyaudio

时间:2020-12-27 20:18:14

标签: macos pyaudio

我正在尝试构建一个虚拟助手,需要一个好的网站来关注。我使用的是 Mac OS Catalina。

我能够成功安装:

template <
    class Key,
    class Value, // <<===============
    class Compare = std::less<Key>,
    class Allocator = std::allocator<std::pair<Key, Value>>,
    class GrowthPolicy = void,
    class Container = std::vector<std::pair<Key, Value>, Allocator>>   // <<===============
class sorted_vector_map : detail::growth_policy_wrapper<GrowthPolicy> {
  detail::growth_policy_wrapper<GrowthPolicy>& get_growth_policy() {
    return *this;
  }

  template <typename K, typename V, typename C = Compare>
  using if_is_transparent =
      _t<detail::sorted_vector_enable_if_is_transparent<void, C, K, V>>;

  struct EBO;

 public:
  typedef Key key_type;
  typedef Value mapped_type; // <<===============
  typedef typename Container::value_type value_type; // <<===============
  typedef Compare key_compare;
  typedef Allocator allocator_type;
  typedef Container container_type;

但是当我尝试安装时

pip3 install gTTS
pip3 install SpeechRecognition
pip3 install pygame

我收到此错误消息:

pip3 install PyAudio

1 个答案:

答案 0 :(得分:0)

在 macOS 中,pyAudio 需要 portaudio 才能工作。只需使用 brew 安装即可:

brew install portaudio