Closed georgiachanning closed 1 year ago
Experienced the same with conda.
The module pymoo.operators.survival.rank_and_crowding
doesn't exist in a release version of pymoo (0.6.0.1 or earlier). In these versions, the rank and crowding operator is implemented in pymoo.algorithms.moo.nsga2
.
If you need to use it, you need to install pymoo from github.
from pymoo.operators.survival.rank_and_crowding import RankAndCrowding
results inModuleNotFoundError: No module named 'pymoo.operators.survival.rank_and_crowding'
. A la NSGA2.pip install -U pymoo
results in this issue.