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

ModuleNotFoundError: No module named 'numpy' #207

Open
levnikolaevich opened this issue Aug 11, 2024 · 4 comments
Open

ModuleNotFoundError: No module named 'numpy' #207

levnikolaevich opened this issue Aug 11, 2024 · 4 comments

Comments

@levnikolaevich
Copy link

Hello!
I’m creating an environment on Ubuntu 22.04 WSL2 and trying to run the following installation commands:

conda create --name WhisperDiarization python=3.11
conda activate WhisperDiarization
sudo pip install -r requirements.txt

However, I’m getting an error.

image

Collecting sox
  Using cached sox-1.5.0.tar.gz (63 kB)
  Preparing metadata (setup.py) ... error
  error: subprocess-exited-with-error

  × python setup.py egg_info did not run successfully.
  │ exit code: 1
  ╰─> [61 lines of output]
      /usr/lib/python3/dist-packages/setuptools/dist.py:723: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead
        warnings.warn(
      Traceback (most recent call last):
        File "/usr/lib/python3/dist-packages/setuptools/config.py", line 419, in _parse_attr
          return getattr(StaticModule(module_name), attr_name)
        File "/usr/lib/python3/dist-packages/setuptools/config.py", line 26, in __init__
          spec = importlib.util.find_spec(name)
        File "/usr/lib/python3.10/importlib/util.py", line 94, in find_spec
          parent = __import__(parent_name, fromlist=['__path__'])
        File "/tmp/pip-install-3gujeufb/sox_64c8db8156a34ea3b5ad274082b1bf18/sox/__init__.py", line 21, in <module>
          from . import file_info
        File "/tmp/pip-install-3gujeufb/sox_64c8db8156a34ea3b5ad274082b1bf18/sox/file_info.py", line 9, in <module>
          from .core import VALID_FORMATS
        File "/tmp/pip-install-3gujeufb/sox_64c8db8156a34ea3b5ad274082b1bf18/sox/core.py", line 8, in <module>
          import numpy as np
      ModuleNotFoundError: No module named 'numpy'

      During handling of the above exception, another exception occurred:

      Traceback (most recent call last):
        File "<string>", line 2, in <module>
        File "<pip-setuptools-caller>", line 34, in <module>
        File "/tmp/pip-install-3gujeufb/sox_64c8db8156a34ea3b5ad274082b1bf18/setup.py", line 10, in <module>
          setup(
        File "/usr/lib/python3/dist-packages/setuptools/__init__.py", line 153, in setup
          return distutils.core.setup(**attrs)
        File "/usr/lib/python3.10/distutils/core.py", line 121, in setup
          dist.parse_config_files()
        File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 804, in parse_config_files
          parse_configuration(
        File "/usr/lib/python3/dist-packages/setuptools/config.py", line 158, in parse_configuration
          meta.parse()
        File "/usr/lib/python3/dist-packages/setuptools/config.py", line 498, in parse
          section_parser_method(section_options)
        File "/usr/lib/python3/dist-packages/setuptools/config.py", line 469, in parse_section
          self[name] = value
        File "/usr/lib/python3/dist-packages/setuptools/config.py", line 222, in __setitem__
          value = parser(value)
        File "/usr/lib/python3/dist-packages/setuptools/config.py", line 599, in _parse_version
          version = self._parse_attr(value, self.package_dir)
        File "/usr/lib/python3/dist-packages/setuptools/config.py", line 422, in _parse_attr
          module = importlib.import_module(module_name)
        File "/usr/lib/python3.10/importlib/__init__.py", line 126, in import_module
          return _bootstrap._gcd_import(name[level:], package, level)
        File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
        File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
        File "<frozen importlib._bootstrap>", line 992, in _find_and_load_unlocked
        File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
        File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
        File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
        File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
        File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
        File "<frozen importlib._bootstrap_external>", line 883, in exec_module
        File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
        File "/tmp/pip-install-3gujeufb/sox_64c8db8156a34ea3b5ad274082b1bf18/sox/__init__.py", line 21, in <module>
          from . import file_info
        File "/tmp/pip-install-3gujeufb/sox_64c8db8156a34ea3b5ad274082b1bf18/sox/file_info.py", line 9, in <module>
          from .core import VALID_FORMATS
        File "/tmp/pip-install-3gujeufb/sox_64c8db8156a34ea3b5ad274082b1bf18/sox/core.py", line 8, in <module>
          import numpy as np
      ModuleNotFoundError: No module named 'numpy'
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

I separately installed both numpy and sox, but it didn't help. What could be the issue?
Thank you in advance!

@MahmoudAshraf97
Copy link
Owner

This is probably a problem with setuptools

@levnikolaevich
Copy link
Author

@MahmoudAshraf97 , I've updated setuptools, but it didn't help. Do you have other ideas? =)

@MahmoudAshraf97
Copy link
Owner

It has to be either setuptools or wheel, other than that I don't know unfortunately

@Gerrytty
Copy link

Gerrytty commented Aug 12, 2024

@levnikolaevich
Hello!
Helps for me: manually install all packages that pip asks. And pip3 install huggingface-hub==0.23.2
I'm using python 3.10

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

No branches or pull requests

3 participants