Removing all installed OpenCV libs

前端 未结 8 824
花落未央
花落未央 2020-12-01 03:07

I\'m running Kubuntu 11.10 (w/ KDE 4.8)

Before you read all this :

I just want to remove all traces of OpenCV from my system, so I can start afresh..

<
8条回答
  •  -上瘾入骨i
    2020-12-01 03:41

    In order to remove all the files and folders without "interaction", use the below command :

    sudo find / -name "*opencv*" -exec rm -rf {} \;
    

    CAUTION: It's not advisable to run "recursive" and "force" deletion.

提交回复
热议问题