You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently `setuptools` assumes that torhcaudio is zip safe and performs
egg (zip) installation when `python setup.py install` (or `pip install .`).
Torchaudio checks module (C++ extension) availavility dynamically at runtime,
using importlib, and egg installation does not work well with this. (importlib
cannot find C++ extension with egg installation even though it exists)
An workaround for this is to set zip_safe=False in setup.py and disable egg
installation, so that `python setup.py install` installs uncompressed files
with regular directory structure.
0 commit comments