Skip to content Skip to sidebar Skip to footer

Modulenotfounderror: No Module Named 'pydip', Although It's Installed

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 answer.

Solution 1:

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

import pydip as dip

AFAIU PyDIP is a different package.

Solution 2:

You are trying to install the PyDIP module by installing it with pip, but the Python Package Index says the pydip module on there is an

Adjudication logic engine for Diplomacy board game

To install it you have to build it from source.

Check here for help.

Post a Comment for "Modulenotfounderror: No Module Named 'pydip', Although It's Installed"