Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bootstrap numpy and scipy installation inside setup.py #55

Closed
kaushik-rohit opened this issue Mar 12, 2017 · 0 comments
Closed

bootstrap numpy and scipy installation inside setup.py #55

kaushik-rohit opened this issue Mar 12, 2017 · 0 comments

Comments

@kaushik-rohit
Copy link
Contributor

Currently we are using setup.py for packaging and installing dependencies but it has problem in installing scikit-learn.Since setup.py installs dependencies in no fixed order and as scikit-learn uses scipy and numpy, it is possible it tries to install scikit learn before installing scipy/numpy which we create an error.

Currently what we are doing is installing numpy and scipy outside the setup.py and importing them inside setup.py which is not the desired way.
Scipy is using a better hack to resolve the same issue.

Some related discussion
pypa/pip#2381
http://stackoverflow.com/questions/19919905/how-to-bootstrap-numpy-installation-in-setup-py

Can also have a look at the setup.py file for scipy or matlabplotlib.

It will be good to have this issue resolved quickly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant