By default, when building OpenCV from source, it will place it’s output in /usr/local/lib
and /usr/local/bin
. Although, judging from your error messages, it looks like it placed the libraries in /usr/lib
and the binaries in /usr/bin
, so you might also check in there.
You can also use the Linux find command. So, to find all OpenCV libraries you can do the following (this might take a while):
$> sudo find / -name "*opencv*" -exec rm -i {} \;
The above command will find any file containing opencv in the name, and will prompt you to remove it. As always, be careful when deleting things manually!
Another option might be to manually compile OpenCV again (exactly as you did before), make install
to create the install manifest, and then try make uninstall
to see if it will clean up itself.
Hope that helps! 🙂
Related Posts:
- ping: google.com: Temporary failure in name resolution [closed]
- Docker System has not been booted with systemd as init system
- CentOS vs. Ubuntu [closed]
- Docker error : no space left on device
- How to establish ssh key pair when “Host key verification failed”
- localhost/phpinfo.php
- After installing with pip, “jupyter: command not found”
- gpg: no valid OpenPGP data found
- gpg: no valid OpenPGP data found
- E: Unable to locate package mongodb-org
- How to open the terminal in Atom?
- Valgrind permission denied on file
- nginx – nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
- How to install Boost on Ubuntu
- How to verify if nginx is running or not?
- pdflatex not found. pdflatex is needed for pdf output
- Nginx: stat() failed (13: permission denied)
- PIP Could not find any downloads that satisfy the requirement SQLAlchemy
- MySQL: How to reset or change the MySQL root password?
- Vim: No write since last change, even though I changed the file
- Why can’t I print to terminal with my python script?
- How to kill a process on a port on ubuntu
- whats the meaning of curl “-s” and “-m”
- How do I ask apt-get to skip any interactive post-install configuration steps?
- How to view all ssl certificates in a bundle?
- How to remove the “installed manually” flag and revert to “automatically installed” with apt-get?
- How do I get apt-get to ignore some dependencies?
- How do I auto-start docker containers at system boot?
- How do I reattach to Ubuntu Server’s ‘do-release-upgrade’ process?
- How to determine JAVA_HOME on Debian/Ubuntu?
- How to start/stop iptables on Ubuntu?
- Which ports do I need to open in the firewall to use NFS?
- list all packages from a repository in ubuntu / debian
- dpkg-reconfigure: unable to re-open stdin: No file or directory
- How can I edit the welcome message when ssh start?
- How does Ubuntu keep track of the “System restart required” flag in motd?
- Amazon Linux vs. Ubuntu for Amazon EC2 [closed]
- Automate the installation of postfix on Ubuntu
- Best location to keep SSL certificates and private keys on Ubuntu servers?
- Why is ssh agent forwarding not working?
- Cannot connect to the Docker daemon at unix:/var/run/docker.sock. Is the docker daemon running?
- How to find which version of TensorFlow is installed in my system?
- ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)
- error: command ‘gcc’ failed with exit status 1 while installing eventlet
- “Couldn’t find a file descriptor referring to the console” on Ubuntu bash on Windows
- Why does the terminal show “^[[A” “^[[B” “^[[C” “^[[D” when pressing the arrow keys in Ubuntu?
- Cannot find module cv2 when using OpenCV
- ImportError: DLL load failed: %1 is not a valid Win32 application. But the DLL’s are there
- ImportError: DLL load failed: %1 is not a valid Win32 application. But the DLL’s are there
- How to solve munmap_chunk(): invalid pointer error in C++
- How to solve “Kernel panic – not syncing – Attempted to kill init” — without erasing any user data
- “E: Unable to locate package python-pip” on Ubuntu 18.04 [duplicate]
- Tensorflow: why ‘pip uninstall tensorflow’ cannot find tensorflow
- How to uninstall mini conda? python
- Difference in output with waitKey(0) and waitKey(1)
- using pip3: module “importlib._bootstrap” has no attribute “SourceFileLoader”
- Failed to start mongod.service: Unit mongod.service not found
- docker command not found even though installed with apt-get
- Ubuntu ‘-bash: nano: command not found’
- What does bitwise_and operator exactly do in openCV?
- Laravel 5.2 Storage::makeDirectory($dir) is not creating directory
- OpenCV Python cv2.perspectiveTransform
- pip connection failure: cannot fetch index base URL http://pypi.python.org/simple/
- How to Reinstall Broken npm
- What is the difference between /etc/rc.local and ~/.bashrc?
- Unable to establish SSL connection upon wget on Ubuntu 14.04 LTS
- ImportError: No module named ‘xlrd’
- No module named ‘openpyxl’ – Python 3.4 – Ubuntu
- Installing opencv on Windows 10 with python 3.6 and anaconda 3.6
- C++ error: undefined reference to ‘clock_gettime’ and ‘clock_settime’
- No module named django but it is installed
- npm “failed to parse json”
- How do I install chkconfig on Ubuntu?
- Error: Could not find or load main class net.minecraft.launchwrapper.Launch when launching Minecraft 1.12.2 with Forge
- List all mounts in Linux
- How to use sed to extract substring
- Getting a 500 Internal Server Error on Laravel 5+ Ubuntu 14.04
- Best practice way to delete user meta data during plugin uninstall?
- Uninstalling a plugin: delete all options with specific prefix
- wpdb::prepare was called incorrectly
- Plugin uninstall: why run dbDelta after $wpdb->query($drop_sql)
- Delete options from all blogs on plugin uninstall from a network/multisite
- Example of uninstaller routine to remove all custom theme options from wp_options
- How to check what plugins used to be on a WordPress installation?
- Global variables during plugin activation , deactivation and uninstall operarations
- Query users by capability – uninstall/deactivate callback
- UnInstallation of a Plugin from a developers perspective – The correct and clean method
- Where could I see uninstallation directives for a plugin?
- Delete and perform a fresh install of WordPress
- Remove settings if theme is deleted?
- Plugin development: delete options when updating to a new version
- Does plugin’s uninstall.php file have access to the plugin ‘s object?
- Remove .htaccess portion upon plugin deactivation?
- Plugin retrieving results even after uninstallation
- How Do I Uninstall a Current WordPress Theme and Install a Fresh Theme
- check_admin_referer fails on new AJAX plugin uninstall with “Are you sure you want to do this?”
- Can I hide all server / os info?
- How to fix PuTTY showing garbled characters? [closed]
- GPG does not have enough entropy
- Why don’t EC2 ubuntu images have swap?