deepspeech-german icon indicating copy to clipboard operation
deepspeech-german copied to clipboard

ModuleNotFoundError: No module named 'down'

Open leonheess opened this issue 4 years ago • 3 comments

When I follow all the steps in the READMe and get to python pre-processing/download_speech_corpus.py --tuda --cv --swc --voxforge --mailabs I get this error:

Traceback (most recent call last):
  File "pre-processing/download_speech_corpus.py", line 6, in <module>
    import audiomate.corpus.io
  File "/deepspeech-german/python-environments/lib/python3.7/site-packages/audiomate/corpus/io/__init__.py", line 7, in <module>
    from .downloader import ArchiveDownloader
  File "/deepspeech-german/python-environments/lib/python3.7/site-packages/audiomate/corpus/io/downloader.py", line 7, in <module>
    from audiomate.utils import download
  File "/deepspeech-german/python-environments/lib/python3.7/site-packages/audiomate/utils/download.py", line 11, in <module>
    from pget.down import Downloader
  File "/deepspeech-german/python-environments/lib/python3.7/site-packages/pget/__init__.py", line 1, in <module>
    from down import Downloader
ModuleNotFoundError: No module named 'down'

leonheess avatar Jun 16 '21 19:06 leonheess

I have the same issue

SuperKogito avatar Dec 02 '21 17:12 SuperKogito

I am too can you help @AASHISHAG ?

abdallah1989203 avatar Jan 11 '22 11:01 abdallah1989203

this is my solution:

  1. cd .. python-environments/lib/python3.7/site-packages
  2. rm -vrf pget
  3. git clone https://github.com/halilozercan/pget
  4. cd pget
  5. python setup.py install that works for me! Linux + Mac

abdallah1989203 avatar Jan 14 '22 16:01 abdallah1989203