Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify the dead batteries workaround for Python >= 3.13 #789

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

cclauss
Copy link
Contributor

@cclauss cclauss commented Nov 11, 2024

try:
    import aifc
    import audioop
except ModuleNotFoundError as e:
    raise ModuleNotFoundError("Please run: pip install audioop-lts standard-aifc") from e

https://docs.python.org/3.13/whatsnew/3.13.html#whatsnew313-pep594

python3.13 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
pip install git+https://github.com/Uberi/speech_recognition.git

        File "/private/var/folders/2n/pb5cf4g10kdfvw9yvsfxy4gr0000gn/T/pip-req-build-uiogiiny/speech_recognition/__init__.py", line 7, in <module>
          import aifc
      ModuleNotFoundError: No module named 'aifc'
 
× Getting requirements to build wheel did not run successfully.
│ exit code: 1

```
try:
    import aifc
    import audioop
except ModuleNotFoundError as e:
    raise ModuleNotFoundError("Please run: pip install audioop-lts standard-aifc") from e
```
https://docs.python.org/3.13/whatsnew/3.13.html#whatsnew313-pep594
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant