pyRecLab is a library for quickly testing and prototyping of traditional recommender system methods, such as User KNN, Item KNN and FunkSVD Collaborative Filtering. It is developed and maintained by Gabriel Sepúlveda and Vicente Domínguez, advised by Prof. Denis Parra, all of them in Computer Science Department at PUC Chile, IA Lab and SocVis Lab.
GNU General Public License v3.0
122
stars
28
forks
source link
after cmake, generated makefile doesn't contain install rule #1
After executing cmake ., the generated makefile doesn't contain the install rule.
On my system (Xubuntu 16.04) when i try make install it throws an error
$ make install
make: *** No hay ninguna regla para construir el objetivo 'install'. Alto.
$ make help
The following are some of the valid targets for this Makefile:
... all (the default if no target is provided)
... clean
... depend
... edit_cache
... rebuild_cache
... target
... pyreclab
... dataio
... datahandlers
... algorithms
... pyinterface
... eval_metrics
I can succesfully install with easy_install and the egg file generated in ./dist
After executing
cmake .
, the generated makefile doesn't contain theinstall
rule.On my system (Xubuntu 16.04) when i try
make install
it throws an errorI can succesfully install with
easy_install
and the egg file generated in ./dist