You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Jetson Orin Nano and a copy of the script OpenCV-4-8-0.sh, once the script finished I had to:
cd opencv/build 'make install'
...and I don't really understand why... but I'm thinking maybe because the script does a sudo make install and thus the python bindings are installed for the root user rather than the current user? Perhaps it needs to be run once to install the libraries as root, and a second time as the user to set up the python bindings? Or changed so the bindings affect all users and not just the root user?
Thanks.
(Also had to sudo apt remove libopencv libopencv-python to get rid of the previous python bindings and opencv library.)
The text was updated successfully, but these errors were encountered:
I had a similar issue. I found out that the install script (4.8) stopped on line 122: sudo rm -r /usr/include/opencv4/opencv2. It said the directory didn't exist. I had to manually run the rest of the script:
sudo make install
sudo ldconfig
make clean
sudo apt-get update
Hi.
Using Jetson Orin Nano and a copy of the script OpenCV-4-8-0.sh, once the script finished I had to:
cd opencv/build
'make install'
...and I don't really understand why... but I'm thinking maybe because the script does a
sudo make install
and thus the python bindings are installed for the root user rather than the current user? Perhaps it needs to be run once to install the libraries as root, and a second time as the user to set up the python bindings? Or changed so the bindings affect all users and not just the root user?Thanks.
(Also had to sudo apt remove libopencv libopencv-python to get rid of the previous python bindings and opencv library.)
The text was updated successfully, but these errors were encountered: