ModuleNotFoundError: No module named 'PyDIP', although it's installed

前端 未结 2 1296
执念已碎
执念已碎 2021-01-25 09:28

Trying to work with image recognition, I installed Python with OpenCV, following this tutorial. Later on, I decided to give PyDIP a try, running the commands given on this answe

2条回答
  •  旧巷少年郎
    2021-01-25 09:55

    The project has top-level package pydip (not PyDIP). So import it:

    import pydip as dip
    

    AFAIU PyDIP is a different package.

提交回复
热议问题