FALCONN
FALCONN copied to clipboard
setup.py should NOT check if libraries (e.g. numpy) are installed
It is not common practice, and for a good reason. With that code in place, it's impossible to do a one-pass pip install of a requirements.txt file including both numpy and falconn, because the setup.py of falconn would be run before numpy is installed (and fail!).