layout-parser icon indicating copy to clipboard operation
layout-parser copied to clipboard

Detectron2LayoutModel requires the detectron2 library but it was not found in your environment

Open pilipentseva opened this issue 2 years ago • 5 comments

I have Windows and went through installation as suggested by @ivanpp for installing Detectron2 on Windows: Detectron2 walkthrough (Windows).

I write a code in jupyter notebook. If I change directory to where I installed detectron2 as mentioned above, import detectron2 and import layoutparser runs. However, I still get an error. Why so?

import detectron2
import layoutparser

model = lp.Detectron2LayoutModel('lp://PubLayNet/mask_rcnn_X_101_32x8d_FPN_3x/config',
                                 extra_config=["MODEL.ROI_HEADS.SCORE_THRESH_TEST", 0.5],
                                 label_map={0: "Text", 1: "Title", 2: "List", 3:"Table", 4:"Figure"})

or

model = lp.models.Detectron2LayoutModel('lp://PubLayNet/mask_rcnn_X_101_32x8d_FPN_3x/config',
                                 extra_config=["MODEL.ROI_HEADS.SCORE_THRESH_TEST", 0.5],
                                 label_map={0: "Text", 1: "Title", 2: "List", 3:"Table", 4:"Figure"})

ImportError Traceback (most recent call last) Cell In[53], line 1 ----> 1 model = lp.models.Detectron2LayoutModel(config_path ='lp://PubLayNet/faster_rcnn_R_50_FPN_3x/config')

File C:\anaconda\lib\site-packages\layoutparser\models\base_layoutmodel.py:87, in BaseLayoutModel.new(cls, *args, **kwargs) 85 def new(cls, *args, **kwargs): ---> 87 requires_backends(cls, cls.DEPENDENCIES) 88 return super().new(cls)

File C:\anaconda\lib\site-packages\layoutparser\file_utils.py:175, in requires_backends(obj, backends) 173 name = obj.name if hasattr(obj, "name") else obj.class.name 174 if not all(BACKENDS_MAPPING[backend]0 for backend in backends): --> 175 raise ImportError( 176 "".join([BACKENDS_MAPPING[backend][1].format(name) for backend in backends]) 177 )

ImportError: Detectron2LayoutModel requires the detectron2 library but it was not found in your environment. Checkout the instructions on the installation page: https://github.com/facebookresearch/detectron2/blob/master/INSTALL.md and follow the ones that match your environment. Typically the following would work for MacOS or Linux CPU machines: pip install 'git+https://github.com/facebookresearch/[email protected]#egg=detectron2'

P.S. I also tried on Colab and same issue

pilipentseva avatar Jun 08 '23 09:06 pilipentseva

having the same issue.

mmervecerit avatar Aug 10 '23 00:08 mmervecerit

having the same issues as well, any potential of fixing this?

biographie avatar Aug 22 '23 12:08 biographie

Having the same issue, however i installed detectron2 differently as described in the LayoutParser documentation. i would not get detectron installed the default way. when i try install detectron i get the following error:

ERROR: Failed building wheel for detectron2 Running setup.py clean for detectron2 Failed to build detectron2 ERROR: Could not build wheels for detectron2, which is required to install pyproject.toml-based projects

PatrickGold555 avatar Oct 12 '23 08:10 PatrickGold555

I'm using MacOS M3 and able to successfully install detectron2 through Anaconda.

maxycn avatar May 07 '24 05:05 maxycn