How can i get Open Cv library installed on my Azure Jupyter NoteBook.Having used the command that shows the version of Open Cv,it returns "no module found".Is there a way to go about this
Asked
Active
Viewed 541 times
1 Answers
0
Select console in the left menu. Here you can install modules using pip or conda.
Another way, you can install opencv from Jupyter Notebook using this code:
import sys
!{sys.executable} -m pip install opencv-python

Cambala
- 26
- 3
-
It worked fine but my output code keeps crashing the kernel so i dont get to see the result – Obadeji Adedamola Oct 11 '19 at 10:02