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

install detectron2 meets some problems #5453

Open
CGL-learner opened this issue Mar 31, 2025 · 4 comments
Open

install detectron2 meets some problems #5453

CGL-learner opened this issue Mar 31, 2025 · 4 comments

Comments

@CGL-learner
Copy link

Instructions To Reproduce the 🐛 Bug:

--> python -m pip install -e detectron2
Looking in indexes: http://mirrors.aliyun.com/pypi/simple
Obtaining file:///root/rcbevdet/detectron2
  Installing build dependencies ... done
  Checking if build backend supports build_editable ... done
  Getting requirements to build editable ... error
  error: subprocess-exited-with-error
  
  × Getting requirements to build editable did not run successfully.
  │ exit code: 1
  ╰─> [19 lines of output]
      Traceback (most recent call last):
        File "/root/rcbevdet/myenv/lib/python3.8/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 389, in <module>
          main()
        File "/root/rcbevdet/myenv/lib/python3.8/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 373, in main
          json_out["return_val"] = hook(**hook_input["kwargs"])
        File "/root/rcbevdet/myenv/lib/python3.8/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 157, in get_requires_for_build_editable
          return hook(config_settings)
        File "/tmp/pip-build-env-8zw8gi3a/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 482, in get_requires_for_build_editable
          return self.get_requires_for_build_wheel(config_settings)
        File "/tmp/pip-build-env-8zw8gi3a/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 333, in get_requires_for_build_wheel
          return self._get_build_requires(config_settings, requirements=[])
        File "/tmp/pip-build-env-8zw8gi3a/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 303, in _get_build_requires
          self.run_setup()
        File "/tmp/pip-build-env-8zw8gi3a/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 521, in run_setup
          super().run_setup(setup_script=setup_script)
        File "/tmp/pip-build-env-8zw8gi3a/overlay/lib/python3.8/site-packages/setuptools/build_meta.py", line 319, in run_setup
          exec(code, locals())
        File "<string>", line 10, in <module>
      ModuleNotFoundError: No module named 'torch'
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× Getting requirements to build editable did not run successfully.
│ exit code: 1
╰─> See above for output.

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

  1. What exact command you run: python -m pip install -e detectron2
    I don't konw why this problem appears and I use many methods to solve this problem but they do not work.
Copy link

You've chosen to report an unexpected problem or bug. Unless you already know the root cause of it, please include details about it by filling the issue template.
The following information is missing: "Your Environment";

@github-actions github-actions bot added the needs-more-info More info is needed to complete the issue label Mar 31, 2025
@CGL-learner
Copy link
Author

cuda 11.3 pytorch1.11.0 python3.8.10

@github-actions github-actions bot removed the needs-more-info More info is needed to complete the issue label Mar 31, 2025
@PrinceAlmeida
Copy link

Even I was facing the same problem Below steps worked for me.

This is because detectron2 library has only wheels for <= Python 3.9."

Open a terminal or command prompt. Create a new environment called detectron2-env with the following command
conda create --name detectron2-env python==3.9 -y

Linux
conda activate detectron2-env

windows
activate detectron2-env

Install the dependencies

pip3 install torch torchvision torchaudio
git clone https://github.com/facebookresearch/detectron2.git
python -m pip install -e detectron2

please refer to the following documentation:

https://detectron2.readthedocs.io/en/latest/tutorials/install.html

@CGL-learner
Copy link
Author

Even I was facing the same problem Below steps worked for me.

This is because detectron2 library has only wheels for <= Python 3.9."

Open a terminal or command prompt. Create a new environment called detectron2-env with the following command conda create --name detectron2-env python==3.9 -y

Linux conda activate detectron2-env

windows activate detectron2-env

Install the dependencies

pip3 install torch torchvision torchaudio git clone https://github.com/facebookresearch/detectron2.git python -m pip install -e detectron2

please refer to the following documentation:

https://detectron2.readthedocs.io/en/latest/tutorials/install.html

thanks you!!! I will make a try in this way to solve this problem. Hope I can fix it.

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

2 participants