How To Upgrade Opencv In Anaconda (windows)?
everyone. My problem is that I need the last version of OpenCV (4.3.0) to run a code but when I checked my version of opencv with the line: print(cv2.__version__) it said that my
Solution 1:
You may be missing the conda-forge channel in your .condarc settings.
try this to install from conda-forge:
conda install -c conda-forge opencv=4.3.0
Post a Comment for "How To Upgrade Opencv In Anaconda (windows)?"