Closed cuekoo closed 9 years ago
Hi,
I need more details. How are you building the package? Are you using python setup.py build
or pip install PyMaxflow
?
What versions are you using for distutils
, setuptools
and cython
? You can get the versions with:
$ python -c 'import distutils; print distutils.__version__'
$ python -c 'import setuptools; print setuptools.__version__'
$ python -c 'import cython; print cython.__version__'
As a first guess, this thread might be related to your problem, and they claim that installing the distribute
package fixes it.
@pmneila Thank you. The solution works.
For later reference, the details are:
python setup.py build
and pip install PyMaxFlow
didn't workdistutils
version 2.7.5; setuptools
version 14.3.1; cython
version 0.22
How to solve the following issue?