ModulenotFoundError: Kein Modul namens 'Pydub'

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: ModulenotFoundError: Kein Modul namens 'Pydub'

by Anonymous » 22 Aug 2025, 09:14

Ich versuche, einen Python -Code für ein Tutorial auszuführen, das ich folge, und es erfordert die "PyDub" -Bibliothek, um einige Audio -Dateien zu manipulieren.

Code: Select all

from pydub import AudioSegment
from pydub.utils import make_chunks
< /code>
Aber wenn ich den Code ausführe, wird der folgende Fehler angezeigt: < /p>
from pydub import AudioSegment
ModuleNotFoundError: No module named 'pydub'
An error occurred while running the flow: Command '['uv', 'run', 'kickoff']' returned non-zero exit status 1.
Ich verwende eine virtuelle Konda -Umgebung und habe PIP3 PyDub und auch python -m -PIP installieren. Ordner sind 3,9 und 3.11 . Der PyDub-Ordner existiert im Ordner ~/bibliothek/python/3.9/lib/python/seitenpackungen .>

Top