ChanServ changed the topic of #mlpack to: "mlpack: a fast, flexible machine learning library :: We don't always respond instantly, but we will respond; please be patient :: Logs at http://www.mlpack.org/irc/
< Hemal>
hello, there was some issue with my pc, and i had to reinstall ubuntu, now I am trying to install mlpack using the source code from github
< Hemal>
I am getting this warning : #warning "Using deprecated NumPy API, disable it by " "#defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
< rcurtin>
Hemal: yeah, this is lower-level from Cython and I don't think there is anything we can do about it
< Hemal>
ok
< Hemal>
i tried reinstalling numpy and I have run the 'make' command again.
< Hemal>
after doing make install, how can I make sure that mlpack is properly installed ?
< rcurtin>
well, you can compile a program that links against mlpack
< rcurtin>
or you can open python and try to import mlpack
< rcurtin>
or you can try to run the command-line programs
< rcurtin>
now there may be some slight difficulty if you installed into /usr/local/ instead of /usr/, you will have to make sure your $PATH is right
< Hemal>
ok thanks, I am able to import mlpack in python2 and python3 as well
< Hemal>
but while the output of 'make' gave this error : IOError: [Errno 13] Permission denied: 'mlpack/kmeans.so'
< Hemal>
Makefile:140: recipe for target 'all' failed
< Hemal>
and there are a number of "skipping '/home/hemal/mlpack/build/src/mlpack/bindings/python/mlpack/test_python_binding.cpp' Cython extension (up-to-date)
< Hemal>
"
< Hemal>
do i need to worry about that, is that fine for now ?