我有 pyttx3 的问题我应该怎么办?

问题描述

Ubuntu 安装在我的笔记本电脑上。


import pyttsx3
engine=pyttsx3.init()
engine.say('Sa1lly sells seashells by the seashore.')

/usr/bin/python3 /home/shohruz/Desktop/Development/solo.py
Traceback (most recent call last):
  File "/home/shohruz/.local/lib/python3.8/site-packages/pyttsx3/__init__.py",line 20,in init
    eng = _activeEngines[driverName]
  File "/usr/lib/python3.8/weakref.py",line 131,in __getitem__
    o = self.data[key]()
KeyError: None

During handling of the above exception,another exception occurred:

Traceback (most recent call last):
  File "/home/shohruz/Desktop/Development/solo.py",line 2,in <module>
    engine=pyttsx3.init()
  File "/home/shohruz/.local/lib/python3.8/site-packages/pyttsx3/__init__.py",line 22,in init
    eng = Engine(driverName,debug)
  File "/home/shohruz/.local/lib/python3.8/site-packages/pyttsx3/engine.py",line 30,in __init__
    self.proxy = driver.DriverProxy(weakref.proxy(self),driverName,debug)
  File "/home/shohruz/.local/lib/python3.8/site-packages/pyttsx3/driver.py",line 50,in __init__
    self._module = importlib.import_module(name)
  File "/usr/lib/python3.8/importlib/__init__.py",line 127,in import_module
    return _bootstrap._gcd_import(name[level:],package,level)
  File "<frozen importlib._bootstrap>",line 1014,in _gcd_import
  File "<frozen importlib._bootstrap>",line 991,in _find_and_load
  File "<frozen importlib._bootstrap>",line 975,in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>",line 671,in _load_unlocked
  File "<frozen importlib._bootstrap_external>",line 783,in exec_module
  File "<frozen importlib._bootstrap>",line 219,in _call_with_frames_removed
  File "/home/shohruz/.local/lib/python3.8/site-packages/pyttsx3/drivers/espeak.py",line 9,in <module>
    from . import _espeak,toUtf8,fromUtf8
  File "/home/shohruz/.local/lib/python3.8/site-packages/pyttsx3/drivers/_espeak.py",line 18,in <module>
    dll = cdll.LoadLibrary('libespeak.so.1')
  File "/usr/lib/python3.8/ctypes/__init__.py",line 451,in LoadLibrary
    return self._dlltype(name)
  File "/usr/lib/python3.8/ctypes/__init__.py",line 373,in __init__
    self._handle = _dlopen(self._name,mode)
OSError: libespeak.so.1: cannot open shared object file: No such file or directory

1.这就是问题所在。请帮帮我...

  1. 我已经使用 sudo pip install pyttsx3 命令安装了 pyttx3。

我已经安装了两个版本的 pyttsx。 pyttsx 和 pyttsx3。但是当我将 pyttsx3 更改为 pyttsx 时,会出现“没有名为‘引擎’的模块”错误

解决方法

import pyttsx3
engine = pyttsx3.init()
engine.say("Sa1lly sells seashells by the seashore")
engine.runAndWait()

这是在windows下,但应该没有任何区别 或者试试这个它适用于我的网站

使用的版本:

Python 3.9.5 (tags/v3.9.5:0a7dcbd,May  3 2021,17:27:52) [MSC v.1928 64 bit (AMD64)] on win32