-
-
Notifications
You must be signed in to change notification settings - Fork 217
Closed
Labels
Description
From a fresh install (or virtualenv), numexpr fails to install from source. The following error occurs:
$ python setup.py install
Traceback (most recent call last):
File "setup.py", line 223, in <module>
setup_package()
File "setup.py", line 62, in setup_package
from numpy.distutils.core import setup
ImportError: No module named numpy.distutils.coreSpecifically the Line 62 in setup.py (https://github.com/pydata/numexpr/blob/master/setup.py#L62) presumes numpy is already installed before even running setup itself. I doubt this was intended since numpy is also listed inside setup_requires.
This issue seems to be related to PyTables/PyTables#454