jvkersch / pyconcorde

Python wrapper around the Concorde TSP solver
BSD 3-Clause "New" or "Revised" License
342 stars 95 forks source link

I'm having trouble with Cython #26

Closed pcezanne closed 1 year ago

pcezanne commented 3 years ago

I was able to install Cython, with "brew install python" but when I do the 'pip install -e .' command I get some error centering on Cython.

    from Cython.Build import cythonize
ModuleNotFoundError: No module named 'Cython'
iliailmer commented 3 years ago

@pcezanne you may need to run pip install -U cython to install cython, if you have not already

jvkersch commented 3 years ago

Just as a heads-up, the next version (0.2.0) will run concorde in a subprocess, thus removing the need for Cython. You can get a sneak preview of this API in https://github.com/jvkersch/pyconcorde/issues/28#issuecomment-770354999