Xtra-Computing / thundersvm

ThunderSVM: A Fast SVM Library on GPUs and CPUs
Apache License 2.0
1.56k stars 216 forks source link

make uninstall doesn't work #153

Closed Gunnvant closed 5 years ago

Gunnvant commented 5 years ago

I have built from source on an ubuntu machine. I wanted to remove this package, but make uninstall is not working. How can this package be removed?

QinbinLi commented 5 years ago

By default, CMake does not provide the "make uninstall" target. If you use the following instructions to build Thundersvm: mkdir build && cd build && cmake .. && make -j You can just delete the 'build' directory to remove it.

Gunnvant commented 5 years ago

I removed the build directory, but I am still able to access thundersvm via python api, ideally after removing build directory,I should not be able to run python api. I can also see my gpu memory being consumed when I run thundersvm via python interface after removing the build directory

QinbinLi commented 5 years ago

If you have installed thundersvm via python, you can remove it by pip uninstall thundersvm

Gunnvant commented 5 years ago

thanks