Use pyevolve in python 3

3.1k Views Asked by At

Pyevolve is usually used in python 2.7. Is there any way we can install and use pyevolve in python 3 ? I know there is another package DEAP for genetic algorithms compatible with python 3 but somehow I have to use pyevolve.

I have tries but I think it is not supported so pip install pyevolve is throwing error.

4

There are 4 best solutions below

0
On

It is a little simpler now (Aug 2021) ...

sudo pip3 install future
git clone https://github.com/BubaVV/Pyevolve.git
cd Pyevolve; sudo python3 setup.py install

This is enough. I tested it with python3 code on both Windows Linux and MacOSX (Intel).

0
On

You can use this PR: https://github.com/perone/Pyevolve/pull/79

The repo is here: https://github.com/BubaVV/Pyevolve

sudo pip3 install future

then inside of the module folder (after you clone/download it), run: sudo python3 setup.py install

0
On

Install both the kernel python 2 and 3 if you still want to try pyevolve. Follow the installation guide at Using both Python 2.x and Python 3.x in IPython Notebook

2
On

pyevolve currently does not support python 3.x

If you want to use pyevolve you need to use python 2.x or rewrite it yourself. Seems like there was already an attempt to port it to python3, but this repo wasn't updated in over a year.